Skip to content

Commit

Permalink
Fix deprecated use of default_features
Browse files Browse the repository at this point in the history
  • Loading branch information
Lonami committed Jun 23, 2024
1 parent 663f598 commit 7538973
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/grammers-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ unstable_raw = []

[dependencies]
chrono = "0.4.31"
futures-util = { version = "0.3.15", default_features = false, features = [
futures-util = { version = "0.3.15", default-features = false, features = [
"alloc"
] }
grammers-crypto = { path = "../grammers-crypto", version = "0.6.1" }
Expand All @@ -37,7 +37,7 @@ locate-locale = "0.2.0"
log = "0.4.20"
md5 = "0.7.0"
mime_guess = "2.0.4"
os_info = { version = "3.0.4", default_features = false }
os_info = { version = "3.0.4", default-features = false }
pin-project-lite = "0.2"
pulldown-cmark = { version = "0.9.3", default-features = false, optional = true }
tokio = { version = "1.34.0", default-features = false, features = [
Expand Down
4 changes: 2 additions & 2 deletions lib/grammers-mtsender/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ proxy = ["tokio-socks", "trust-dns-resolver", "url"]

[dependencies]
bytes = "1.5.0"
futures-util = { version = "0.3.15", default_features = false, features = [
futures-util = { version = "0.3.15", default-features = false, features = [
"alloc"
] }
grammers-crypto = { path = "../grammers-crypto", version = "0.6.1" }
grammers-mtproto = { path = "../grammers-mtproto", version = "0.6.0" }
grammers-tl-types = { path = "../grammers-tl-types", version = "0.6.0", features = [ "tl-mtproto" ] }
log = "0.4.20"
tokio = { version = "1.5.0", default_features = false, features = ["net", "io-util", "sync", "time"] }
tokio = { version = "1.5.0", default-features = false, features = ["net", "io-util", "sync", "time"] }
tokio-socks = { version = "0.5.1", optional = true }
trust-dns-resolver = { version = "0.23.2", optional = true }
url = { version = "2.4.1", optional = true }
Expand Down

0 comments on commit 7538973

Please sign in to comment.