Skip to content

Commit d8730c6

Browse files
committed
bytes should not be optional dep for rama benchmark
1 parent c885e38 commit d8730c6

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

frameworks/Rust/rama/Cargo.toml

+2-7
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,7 @@ path = "src/main_pg.rs"
3030

3131
[features]
3232
default = []
33-
simd-json = [
34-
"dep:simd-json",
35-
"dep:mime",
36-
"dep:bytes",
37-
"dep:serde_path_to_error",
38-
]
33+
simd-json = ["dep:simd-json", "dep:mime", "dep:serde_path_to_error"]
3934

4035
[dependencies]
4136
rama = { version = "0.2.0-alpha.11", default-features = false, features = [
@@ -68,7 +63,7 @@ tokio-postgres = { version = "0.7" }
6863
yarte = "0.15"
6964
simd-json = { version = "0.15", optional = true }
7065
mime = { version = "0.3", optional = true }
71-
bytes = { version = "1.10", optional = true }
66+
bytes = { version = "1.10" }
7267
serde_path_to_error = { version = "0.1", optional = true }
7368
quick_cache = "0.6"
7469
mimalloc = "0.1"

0 commit comments

Comments
 (0)