Skip to content
Snippets Groups Projects
Unverified Commit 4710f739 authored by Charles Hall's avatar Charles Hall
Browse files

clap v4 turned more things into optional features

So we need to re-enable some things. See their changelog[0] for details.

[0]: https://github.com/clap-rs/clap/blob/master/CHANGELOG.md#migrating
parent 3c20c1b7
No related branches found
No related tags found
No related merge requests found
...@@ -83,7 +83,7 @@ thread_local = "1.1.3" ...@@ -83,7 +83,7 @@ thread_local = "1.1.3"
hmac = "0.12.1" hmac = "0.12.1"
sha-1 = "0.10.0" sha-1 = "0.10.0"
# used for conduit's CLI and admin room command parsing # used for conduit's CLI and admin room command parsing
clap = { version = "4.0.11", default-features = false, features = ["std", "derive"] } clap = { version = "4.0.11", default-features = false, features = ["std", "derive", "help", "usage", "error-context"] }
futures-util = { version = "0.3.17", default-features = false } futures-util = { version = "0.3.17", default-features = false }
# Used for reading the configuration from conduit.toml & environment variables # Used for reading the configuration from conduit.toml & environment variables
figment = { version = "0.10.6", features = ["env", "toml"] } figment = { version = "0.10.6", features = ["env", "toml"] }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment