Skip to content

Commit

Permalink
clippy: use default-features instead of default_features
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Jun 20, 2024
1 parent a89195c commit 52d18c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.21.2", features = ["abi3-py37"] }
daily-core = { path = "../daily-core" }
futures = { version = "0.3.30", default_features = false, features = [
futures = { version = "0.3.30", default-features = false, features = [
"std",
"executor",
] }
lazy_static = "1.4.0"
libc = "0.2.154"
serde = { version = "1.0.200", default_features = false, features = ["derive"] }
serde = { version = "1.0.200", default-features = false, features = ["derive"] }
serde_json = "1.0.116"
tracing = "0.1.40"
uuid = { version = "1.8.0", default_features = false, features = [
uuid = { version = "1.8.0", default-features = false, features = [
"serde",
"v4",
] }
Expand Down

0 comments on commit 52d18c8

Please sign in to comment.