mirror of https://github.com/rwf2/Rocket.git
Remove [target.'cfg(debug_assertions)'.dependencies] in contrib Cargo.toml.
This is not supported and is the same as putting the contents in [dependencies] anyway. It became a warning in rust-lang/cargo#7660.
This commit is contained in:
parent
f4bb8bb511
commit
4151cd46db
|
@ -55,6 +55,7 @@ rmp-serde = { version = "0.14.0", optional = true }
|
||||||
handlebars = { version = "2.0", optional = true }
|
handlebars = { version = "2.0", optional = true }
|
||||||
glob = { version = "0.3", optional = true }
|
glob = { version = "0.3", optional = true }
|
||||||
tera = { version = "1.0.2", optional = true }
|
tera = { version = "1.0.2", optional = true }
|
||||||
|
notify = { version = "4.0.6" }
|
||||||
|
|
||||||
# UUID dependencies.
|
# UUID dependencies.
|
||||||
uuid = { version = ">=0.7.0, <0.9.0", optional = true }
|
uuid = { version = ">=0.7.0, <0.9.0", optional = true }
|
||||||
|
@ -84,8 +85,5 @@ time = { version = "0.1.40", optional = true }
|
||||||
brotli = { version = "3.3", optional = true }
|
brotli = { version = "3.3", optional = true }
|
||||||
flate2 = { version = "1.0", optional = true }
|
flate2 = { version = "1.0", optional = true }
|
||||||
|
|
||||||
[target.'cfg(debug_assertions)'.dependencies]
|
|
||||||
notify = { version = "^4.0.6" }
|
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|
Loading…
Reference in New Issue