Skip to content

Commit

Permalink
fix(misc): get rid of annoying default-features warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Sep 28, 2023
1 parent 7ee6a74 commit 84f4586
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 127 deletions.
121 changes: 0 additions & 121 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Expand Up @@ -41,7 +41,7 @@ chrono = { workspace = true }
chrono-humanize = { workspace = true }
clap = { workspace = true, features = ["derive"] }
colored = { workspace = true }
dialoguer = { workspace = true, default_features = false }
dialoguer = { workspace = true, default-features = false }
directories = { workspace = true }
humansize = { workspace = true }
indicatif = { workspace = true }
Expand Down Expand Up @@ -88,12 +88,12 @@ chrono = "0.4.23"
chrono-humanize = "0.0.11"
clap = "4.2.1"
colored = "2.0.0"
config = "0.13.2"
config = { version = "0.13.2", default-features = false }
console_error_panic_hook = "0.1.7"
darling = "0.10.2"
dashmap = "4.0.0-rc6"
derive_builder = "0.11.2"
dialoguer = "0.10.4"
dialoguer = { version = "0.10.4", default-features = false }
directories = "4.0.1"
dunce = "1.0.3"
flate2 = "1.0.25"
Expand Down Expand Up @@ -122,7 +122,7 @@ poloto = "17.1.0"
pretty_assertions = "1.3.0"
proc-macro2 = "1.0.18"
quote = "1.0.7"
rand = "0.8.5"
rand = { version = "0.8.5", default-features = false }
reflink-copy = "0.1.5"
regex = "1.7.2"
reqwest = "0.11.14"
Expand All @@ -147,7 +147,7 @@ tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-indicatif = "0.3.0"
tracing-subscriber = "0.3.16"
tsify = "0.4.3"
tsify = { version = "0.4.3", default-features = false }
url = "2.3.1"
walkdir = "2.3.2"
wasm-bindgen = "0.2.84"
Expand Down
2 changes: 1 addition & 1 deletion crates/oro-npm-account/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ oro-client = { version = "=0.3.29", path = "../oro-client" }

async-std = { workspace = true }
base64 = { workspace = true }
dialoguer = { workspace = true }
dialoguer = { workspace = true, features = ["password"] }
kdl = { workspace = true }
miette = { workspace = true }
open = { workspace = true }
Expand Down

0 comments on commit 84f4586

Please sign in to comment.