diff --git a/lib/grammers-client/Cargo.toml b/lib/grammers-client/Cargo.toml
index 020427c4..f4b6ccb0 100644
--- a/lib/grammers-client/Cargo.toml
+++ b/lib/grammers-client/Cargo.toml
@@ -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" }
@@ -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 = [
diff --git a/lib/grammers-mtsender/Cargo.toml b/lib/grammers-mtsender/Cargo.toml
index d580c5f9..d6f11511 100644
--- a/lib/grammers-mtsender/Cargo.toml
+++ b/lib/grammers-mtsender/Cargo.toml
@@ -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 }