Skip to content

Commit

Permalink
cleanup rust to only be the spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr Martian committed Oct 3, 2024
1 parent 8321c95 commit 61872e3
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 4,225 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,3 @@
# on:
# push:
# branches:
# - master

# jobs:
# generate-docs:
# runs-on: ubuntu-latest

# steps:
# - name: Checkout code
# uses: actions/checkout@v4

# - name: Setup Pages
# id: pages
# uses: actions/configure-pages@v4

# - name: Set up Bun
# uses: oven-sh/setup-bun@v1
# with:
# bun-version: 1.1.29

# - name: Install dependencies
# run: bun install

# - name: Build the docs
# run: bun run docs

# - name: Upload artifacts
# uses: actions/upload-artifact@v4
# with:
# path: ./docs # Path to the docs folder

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

Expand Down
83 changes: 0 additions & 83 deletions rust/convert.rs

This file was deleted.

18 changes: 0 additions & 18 deletions rust/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,13 @@
extern crate alloc;

/// Global conversion tool
pub mod convert;
/// All geometry types and structs
pub mod geometry;
/// All S2 tooling
pub mod s2;
/// All simplify tooling
pub mod simplify;
/// Tile Structure
pub mod tile;
/// All utility tools
pub mod util;
/// All values types and structs
pub mod values;
/// All WM tooling
pub mod wm;

pub use convert::*;
pub use geometry::*;
pub use s2::*;
pub use simplify::*;
pub use tile::*;
pub use util::*;
pub use values::*;
pub use wm::*;

use serde::{Deserialize, Serialize};

Expand Down
Loading

0 comments on commit 61872e3

Please sign in to comment.