tokio-xmpp, xmpp: Remove regex support from env_logger
This bloats our binaries by 1.1 MiB after stripping, for very minimal additional features. People who need that feature can enable it themselves.
This commit is contained in:
parent
b94d1b5222
commit
2d11ada30f
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ rand = "^0.8"
|
||||||
syntect = { version = "5", optional = true }
|
syntect = { version = "5", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.10"
|
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
rustc_version = "0.4"
|
rustc_version = "0.4"
|
||||||
|
|
|
@ -22,7 +22,7 @@ reqwest = { version = "0.11.8", features = ["stream"] }
|
||||||
tokio-util = { version = "0.7", features = ["codec"] }
|
tokio-util = { version = "0.7", features = ["codec"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.10"
|
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "hello_bot"
|
name = "hello_bot"
|
||||||
|
|
Loading…
Reference in a new issue