You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zero2prod/Cargo.toml

22 lines
569 B
TOML

[package]
name = "zero2prod"
version = "0.1.0"
authors = ["k <rust@juke.fr>"]
edition = "2021"
[lib]
path = "src/lib.rs" # this is a community standard apparently, the name defaults to the package name
[[bin]] # you can have multiple binaries apparently but only a single lib... ok...
path = "src/main.rs"
name = "zero2prod" # for some reason for the binary it will not default to the package name... ok...
[features]
[dependencies]
actix-web = "4.1.0"
tokio = { version = "1.16.1", features = ["macros", "rt-multi-thread"] }
[dev-dependencies]
reqwest = "0.11.9"