Skip to content

Commit

Permalink
Fixup the Cargo file (#57)
Browse files Browse the repository at this point in the history
Added include parameter to only include the files need for build. Also
update tokio to 1.38 and only use the needed features.
  • Loading branch information
StefanBossbaly authored Jun 16, 2024
1 parent 9d60e3c commit ecdee93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/StefanBossbaly/septa-api/"
authors = ["Stefan Bossbaly <sbossb@gmail.com>"]
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
include = ["/src/**/*.rs", "/README.md", "/LICENSE"]

[dependencies]
chrono = "0.4.38"
Expand All @@ -21,7 +21,7 @@ thiserror = "1.0.61"

[dev-dependencies]
mockito = "1.4.0"
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
gtfs-structures = "0.41.3"
geojson = "0.24.1"
once_cell = "1.19.0"
Expand Down

0 comments on commit ecdee93

Please sign in to comment.