21 lines
504 B
TOML
21 lines
504 B
TOML
|
[package]
|
||
|
name = "odeli-canadapost"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
odeli-core = { version = "0.1", path = "../../odeli-core" }
|
||
|
|
||
|
chrono = { version = "0.4" }
|
||
|
isocountry = { version = "0.3" }
|
||
|
|
||
|
reqwest = { version = "0.11", features = [ "json" ] }
|
||
|
|
||
|
serde = { version = "1.0" }
|
||
|
serde_derive = { version = "1.0" }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
tokio = { version = "1", features = [ "rt", "macros" ] }
|