Skip to content

Commit

Permalink
Disable default features of structopt
Browse files Browse the repository at this point in the history
With this change we disable the default features of structopt. We try to
only pull in what is necessary and the program builds fine without the
default features enabled.
  • Loading branch information
d-e-s-o committed May 2, 2020
1 parent fd01a86 commit b2d2179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ chrono = {version = "0.4", default-features = false}
futures = {version = "0.3", default-features = false, features = ["async-await", "std"]}
num-decimal = "0.2"
serde_json = {version = "1.0", default-features = false}
structopt = "0.3"
structopt = {version = "0.3", default-features = false}
tokio = {version = "0.2", default-features = false, features = ["rt-core"]}
tracing = {version = "0.1", default-features = false, features = ["std"]}
tracing-subscriber = {version = "0.1.6", default-features = false, features = ["ansi", "chrono", "env-filter", "fmt"]}
Expand Down

0 comments on commit b2d2179

Please sign in to comment.