diff --git a/crates/arti-client/Cargo.toml b/crates/arti-client/Cargo.toml
index 49abaa3644b87924b58f4768c2d2b07bb9254bd9..9cd780ab1efc57a7defefc3ef6c5a14128dce5d4 100644
--- a/crates/arti-client/Cargo.toml
+++ b/crates/arti-client/Cargo.toml
@@ -48,19 +48,14 @@ derive_more = "0.99"
 directories = "4"
 educe = "0.4.6"
 futures = "0.3.14"
-postage = { version = "0.4", default-features = false, features = [
-    "futures-traits",
-] }
+postage = { version = "0.4", default-features = false, features = ["futures-traits"] }
 tracing = "0.1.18"
 serde = { version = "1.0.103", features = ["derive"] }
 thiserror = "1"
 pin-project = "1"
 
 [dev-dependencies]
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.1.0", features = [
-    "tokio",
-    "native-tls",
-] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.1.0", features = ["tokio", "native-tls"] }
 tokio-crate = { package = "tokio", version = "1.7", features = [
     "rt",
     "rt-multi-thread",
diff --git a/crates/tor-circmgr/Cargo.toml b/crates/tor-circmgr/Cargo.toml
index 9435fdf2b9ac5b3b8c709b429dde3d144d2425fe..4ca8d3fd329e55f8d810691854b133b1029095d1 100644
--- a/crates/tor-circmgr/Cargo.toml
+++ b/crates/tor-circmgr/Cargo.toml
@@ -52,17 +52,8 @@ weak-table = "0.3.0"
 [dev-dependencies]
 futures-await-test = "0.3.0"
 tor-rtmock = { path = "../tor-rtmock", version = "0.1.0" }
-tor-guardmgr = { path = "../tor-guardmgr", version = "0.1.0", features = [
-    "testing",
-] }
+tor-guardmgr = { path = "../tor-guardmgr", version = "0.1.0", features = ["testing"] }
 tor-llcrypto = { path = "../tor-llcrypto", version = "0.1.0" }
-tor-netdir = { path = "../tor-netdir", version = "0.1.0", features = [
-    "testing",
-] }
-tor-persist = { path = "../tor-persist", version = "0.1.0", features = [
-    "testing",
-] }
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.1.0", features = [
-    "tokio",
-    "native-tls",
-] }
+tor-netdir = { path = "../tor-netdir", version = "0.1.0", features = ["testing"] }
+tor-persist = { path = "../tor-persist", version = "0.1.0", features = ["testing"] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.1.0", features = ["tokio", "native-tls"] }
diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml
index 86c690130de67ff85c8aa2c920be46b8714086df..f5b03bbe67ed880a201365236709379f7fd1596d 100644
--- a/crates/tor-dirmgr/Cargo.toml
+++ b/crates/tor-dirmgr/Cargo.toml
@@ -53,9 +53,7 @@ itertools = "0.10.1"
 tracing = "0.1.18"
 memmap2 = { version = "0.5.0", optional = true }
 once_cell = "1"
-postage = { version = "0.4", default-features = false, features = [
-    "futures-traits",
-] }
+postage = { version = "0.4", default-features = false, features = ["futures-traits"] }
 rand = "0.8"
 rusqlite = { version = "0.27.0", features = ["time"] }
 serde = { version = "1.0.103", features = ["derive"] }
@@ -68,8 +66,5 @@ humantime-serde = "1.1.1"
 futures-await-test = "0.3.0"
 hex-literal = "0.3"
 tempfile = "3"
-tor-rtcompat = { path = "../tor-rtcompat", version = "0.1.0", features = [
-    "tokio",
-    "native-tls",
-] }
+tor-rtcompat = { path = "../tor-rtcompat", version = "0.1.0", features = ["tokio", "native-tls"] }
 float_eq = "0.7"