Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenDC committed Feb 9, 2025
1 parent ae0f31e commit 3a772eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ futures-util = "0.3"
futures-channel = "0.3"
sha2 = "0.10.8"
jemallocator = { package = "tikv-jemallocator", version = "0.6" }
mimalloc = { version = "0.1.39" }
mimalloc = { version = "0.1.39", default-features = false }

[workspace.lints.rust]
unreachable_pub = "deny"
Expand Down
4 changes: 2 additions & 2 deletions rama-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ base64 = { workspace = true }
bytes = { workspace = true }
clap = { workspace = true }
hex = { workspace = true }
jemallocator = { workspace = true, optional = true }
mimalloc = { workspace = true, optional = true }
rama = { version = "0.2.0-alpha.7", path = "..", features = ["full"] }
serde = { workspace = true }
serde_json = { workspace = true }
terminal-prompt = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
jemallocator = { workspace = true, optional = true }
mimalloc = { workspace = true, default-features = false, optional = true }

[[bin]]
name = "rama"
Expand Down

0 comments on commit 3a772eb

Please sign in to comment.