diff --git a/Cargo.toml b/Cargo.toml index 6eb4b5a1b..22fa68dda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,11 +4,12 @@ version = "0.1.0" edition = "2021" build = "build.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + [build-dependencies] -shadow-rs = "0.25.0" +shadow-rs = { version = "0.25.0", features = [], default-features = false } [dependencies] -shadow-rs = "0.25.0" +shadow-rs = { version = "0.25.0", features = [], default-features = false } hyper = { version = "0.14", features = ["server", "stream"] } reqwest = { version = "0.11", features = ["json", "stream"] } tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "rt-multi-thread", "signal"] }