Skip to content

Commit

Permalink
Merge pull request #72 from Urban-Analytics-Technology-Platform/67-re…
Browse files Browse the repository at this point in the history
…impl-recipe

Reimplement recipe subcommand (#67)
  • Loading branch information
sgreenbury authored Sep 3, 2024
2 parents c4da859 + 8515299 commit e6f1d3a
Show file tree
Hide file tree
Showing 8 changed files with 427 additions and 259 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/target
.DS_Store
.vscode
popgetter_py
77 changes: 44 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 20 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,30 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0.75"
serde = { version = "1.0", features = ["derive"] }
serde_json = {version="1.0"}
serde_json = { version = "1.0" }
tokio = { version = "1.30.0", features = ["full"] }
clap = { version = "4.5.0", features = ["derive"] }
polars = {version ="0.39.2", features = ["lazy","is_in","http","streaming", "parquet","polars-io","regex","strings","rows"]}
polars = { version = "0.39.2", features = [
"lazy",
"is_in",
"http",
"streaming",
"parquet",
"polars-io",
"regex",
"strings",
"rows",
] }
typify = "0.0.16"
chrono = {version="0.4.37", features=['serde']}
reqwest = {version = "0.12.3", features = ["json"]}
chrono = { version = "0.4.37", features = ['serde'] }
reqwest = { version = "0.12.3", features = ["json"] }
strum = "0.26"
strum_macros = "0.26"
enum_dispatch = "0.3"
flatgeobuf = "~4.1.0"
geozero = {version = "0.12.0", features= ["with-csv","with-geojson"]}
geozero = { version = "0.12.0", features = ["with-csv", "with-geojson"] }
httpmock = "0.7.0-rc.1"
geojson={version="0.24.1", optional=true }
geojson = { version = "0.24.1", optional = true }
geo = "0.28.0"
wkt = "0.10.3"
wkb = "0.7.1"
Expand All @@ -43,7 +53,10 @@ thiserror = "1"
nonempty = { version = "0.10.0", features = ["serialize"] }
spinners = "4.1.1"

[dev-dependencies]
tempfile = "3.12"


[features]
default = ["formatters"]
formatters= ["dep:geojson"]
formatters = ["dep:geojson"]
Loading

0 comments on commit e6f1d3a

Please sign in to comment.