Skip to content

Commit

Permalink
dep fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
divi255 committed Jan 12, 2025
1 parent 71dc388 commit a60dcaf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 14 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "busrt"
version = "0.4.15"
version = "0.4.16"
edition = "2021"
authors = ["Serhij S. <[email protected]>"]
license = "Apache-2.0"
Expand Down Expand Up @@ -56,17 +56,22 @@ tokio-task-pool = { version = "0.1.3", optional = true }
parking_lot_rt = { version = "0.12.1", optional = true }

[features]
server = ["log", "syslog", "chrono", "colored", "clap", "lazy_static", "jemallocator", "fork", "broker"]
broker = ["log", "submap/native-digest", "async-trait", "unix-named-pipe", "nix", "ipnetwork", "triggered", "parking_lot"]
ipc = ["log", "async-trait", "parking_lot"]
rpc = ["log", "serde", "rmp-serde", "async-trait", "serde-value", "parking_lot", "regex", "tokio-task-pool"]
cli = ["ipc", "rpc", "colored", "clap", "env_logger", "bma-benchmark", "prettytable-rs", "hostname", "hex", "num-format", "jemallocator", "serde_json", "atty"]
server = ["dep:log", "dep:syslog", "dep:chrono", "dep:colored",
"dep:clap", "dep:lazy_static", "dep:jemallocator", "dep:fork", "broker"]
broker = ["dep:log", "submap/native-digest", "dep:async-trait", "dep:unix-named-pipe", "dep:nix",
"dep:ipnetwork", "dep:triggered", "dep:parking_lot"]
ipc = ["dep:log", "dep:async-trait", "dep:parking_lot"]
rpc = ["dep:log", "dep:serde", "dep:rmp-serde", "dep:async-trait", "dep:serde-value", "dep:parking_lot",
"dep:regex", "dep:tokio-task-pool"]
cli = ["ipc", "rpc", "dep:colored", "dep:clap", "dep:env_logger",
"dep:bma-benchmark", "dep:prettytable-rs", "dep:hostname", "dep:hex",
"dep:num-format", "dep:jemallocator", "dep:serde_json", "dep:atty"]
openssl-vendored = ["submap/openssl-vendored"]
full = ["rpc", "ipc", "broker"]
cursors = ["rpc", "uuid"]
cursors = ["rpc", "dep:uuid"]
std-alloc = []
tracing = ["tokio/tracing", "console-subscriber"]
rt = ["parking_lot_rt"]
tracing = ["tokio/tracing", "dep:console-subscriber"]
rt = ["dep:parking_lot_rt"]
#default = ["full"]

[lib]
Expand Down

0 comments on commit a60dcaf

Please sign in to comment.