Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

correct cli build on main that fail with async trait error #190

Merged
merged 1 commit into from
Apr 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions crates/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
async-trait = { version = "0.1.74" }
base64 = "0.21.7"
bincode = "1.3"
blake3 = "1.5"
Expand All @@ -27,7 +28,6 @@ tokio = { version = "1", features = ["full", "io-util", "tracing"] }
tracing = "0.1"
uuid = { version = "1", features = [ "v4", "fast-rng", "macro-diagnostics", "serde" ] }

async-trait = { version = "0.1.74", optional = true }
bytes = { version = "1.5", optional = true }
clap = { version = "4", features = ["derive", "env", "string"], optional = true }
console-subscriber = { version = "0.2", optional = true }
Expand Down Expand Up @@ -62,7 +62,6 @@ zstd = { version = "0.13", optional = true }
[features]
default = ["node-binary"]
node-binary = [
"async-trait",
"bytes",
"clap",
"console-subscriber",
Expand Down
Loading