-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is especially helpful when doing patch over-rides, since data_prep depends on backend.
- Loading branch information
1 parent
a17800a
commit 89c22c7
Showing
6 changed files
with
80 additions
and
1,166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,5 +24,4 @@ jobs: | |
|
||
- name: Run tests | ||
run: | | ||
cd backend | ||
cargo test --release |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[workspace] | ||
members = [ | ||
"backend", | ||
"data_prep/scotland", | ||
] | ||
|
||
resolver = "2" | ||
|
||
[workspace.package] | ||
edition = "2021" | ||
|
||
[workspace.dependencies] | ||
anyhow = "1.0.82" | ||
bincode = "1.3.3" | ||
geo = { git = "https://github.com/georust/geo" } | ||
geojson = { git = "https://github.com/georust/geojson", features = ["geo-types"] } | ||
serde = "1.0.188" | ||
utils = { git = "https://github.com/a-b-street/utils", features = ["serde"] } | ||
|
||
# For local development, build dependencies in release mode once, but otherwise | ||
# use dev profile and avoid wasm-opt. | ||
[profile.dev.package."*"] | ||
opt-level = 3 | ||
|
||
[patch.crates-io] | ||
geo = { git = "https://github.com/georust/geo" } | ||
geo-types = { git = "https://github.com/georust/geo" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.