Skip to content

Commit

Permalink
cargo: Remove unused log dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
felinira committed Sep 7, 2024
1 parent 22b261b commit 7f21df4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ sha2 = { workspace = true }
hkdf = { workspace = true }
hex = { workspace = true, features = ["serde"] }
rand = { workspace = true }
log = { workspace = true }
base64 = { workspace = true }
time = { workspace = true, features = ["formatting"] }

Expand All @@ -104,7 +103,7 @@ futures = { workspace = true }
url = { workspace = true, features = ["serde"] }
percent-encoding = { workspace = true }

tracing = { workspace = true, features = ["log", "log-always"]}
tracing = { workspace = true, features = ["log", "log-always"] }

# Transit dependencies

Expand Down Expand Up @@ -143,7 +142,7 @@ getrandom = { version = "0.2.5", features = ["js"] }

# for some tests
[dev-dependencies]
test-log = { workspace = true}
test-log = { workspace = true }
eyre = { workspace = true }

[features]
Expand Down
7 changes: 4 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ path = "src/main.rs"
serde = { workspace = true, features = ["rc"] }
serde_json = { workspace = true }
serde_derive = { workspace = true }
log = { workspace = true }
url = { workspace = true, features = ["serde"] }
futures = { workspace = true }
async-std = { workspace = true, features = ["attributes", "unstable"] }
Expand All @@ -39,9 +38,11 @@ color-eyre = { workspace = true }
number_prefix = { workspace = true }
ctrlc = { workspace = true }
qr2term = { workspace = true }
arboard = { workspace = true, features = ["wayland-data-control"] } # Wayland by default, fallback to X11.
arboard = { workspace = true, features = [
"wayland-data-control",
] } # Wayland by default, fallback to X11.
tracing = { workspace = true, features = ["log", "log-always"] }
tracing-subscriber = { workspace=true, features = ["env-filter"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }

[dev-dependencies]
trycmd = { workspace = true }
Expand Down

0 comments on commit 7f21df4

Please sign in to comment.