Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
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
11 changes: 2 additions & 9 deletions lib/protoflow-blocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,7 @@ hash-sha1 = ["dep:sha1"]
hash-sha2 = ["dep:sha2"]

rand = ["protoflow-core/rand"]
std = [
"blake3?/std",
"protoflow-core/std",
"serde?/std",
"sysml-model?/std",
"tracing?/std",
]
std = ["blake3?/std", "protoflow-core/std", "serde?/std", "sysml-model?/std"]
serde = [
"duration-str/serde",
"protoflow-core/serde",
Expand All @@ -40,7 +34,7 @@ serde = [
]
sysml = ["protoflow-core/sysml", "dep:sysml-model"]
tokio = ["protoflow-core/tokio", "dep:tokio"]
tracing = ["protoflow-core/tracing", "dep:tracing"]
tracing = ["protoflow-core/tracing"]
unstable = ["protoflow-core/unstable", "protoflow-derive/unstable"]

[build-dependencies]
Expand All @@ -54,7 +48,6 @@ md-5 = { version = "0.10.6", default-features = false, optional = true }
protoflow-core.workspace = true
protoflow-derive.workspace = true
tokio = { version = "1.40.0", default-features = false, optional = true }
tracing = { version = "0.1", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, features = [
"derive",
], optional = true }
Expand Down
5 changes: 2 additions & 3 deletions lib/protoflow-crossbeam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ publish.workspace = true
[features]
default = ["all", "std"]
all = ["tracing"]
std = ["crossbeam/std", "protoflow-core/std", "tracing?/std"]
tracing = ["protoflow-core/tracing", "dep:tracing"]
std = ["crossbeam/std", "protoflow-core/std"]
tracing = ["protoflow-core/tracing"]
unstable = ["protoflow-core/unstable"]

[build-dependencies]
Expand All @@ -27,6 +27,5 @@ cfg_aliases.workspace = true
[dependencies]
crossbeam = { version = "0.8", default-features = false }
protoflow-core.workspace = true
tracing = { version = "0.1", default-features = false, optional = true }

[dev-dependencies]
5 changes: 2 additions & 3 deletions lib/protoflow-flume/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ publish.workspace = true
[features]
default = ["all", "std"]
all = ["tracing"]
std = ["protoflow-core/std", "tracing?/std"]
tracing = ["protoflow-core/tracing", "dep:tracing"]
std = ["protoflow-core/std"]
tracing = ["protoflow-core/tracing"]
unstable = ["protoflow-core/unstable"]

[build-dependencies]
Expand All @@ -27,6 +27,5 @@ cfg_aliases.workspace = true
[dependencies]
flume = { version = "0.11", default-features = false }
protoflow-core.workspace = true
tracing = { version = "0.1", default-features = false, optional = true }

[dev-dependencies]
3 changes: 0 additions & 3 deletions lib/protoflow-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ std = [
"protoflow-core/std",
"sysml-model?/std",
"sysml-parser?/std",
"tracing?/std",
]
sysml = [
"protoflow-blocks/sysml",
Expand All @@ -34,7 +33,6 @@ tracing = [
"protoflow-blocks/tracing",
"protoflow-core/tracing",
"sysml-parser?/tracing",
"dep:tracing",
]
unstable = ["protoflow-blocks/unstable", "protoflow-core/unstable"]

Expand All @@ -54,6 +52,5 @@ sysml-model = { version = "=0.2.3", default-features = false, optional = true }
sysml-parser = { version = "=0.2.3", default-features = false, features = [
"error-stack",
], optional = true }
tracing = { version = "0.1", default-features = false, optional = true }

[dev-dependencies]
5 changes: 2 additions & 3 deletions lib/protoflow-zeromq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,15 @@ publish.workspace = true
[features]
default = ["all", "std"]
all = ["tracing"]
std = ["protoflow-core/std", "tracing?/std"] #, "zeromq/default"]
tracing = ["protoflow-core/tracing", "dep:tracing"]
std = ["protoflow-core/std"] #, "zeromq/default"]
tracing = ["protoflow-core/tracing"]
unstable = ["protoflow-core/unstable"]

[build-dependencies]
cfg_aliases.workspace = true

[dependencies]
protoflow-core.workspace = true
tracing = { version = "0.1", default-features = false, optional = true }
#zeromq = { version = "0.4", default-features = false }

[dev-dependencies]
8 changes: 5 additions & 3 deletions lib/protoflow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ std = [
"protoflow-flume?/std",
"protoflow-syntax?/std",
"protoflow-zeromq?/std",
"tracing?/std",
]
syntax = ["dep:protoflow-syntax"]
sysml = [
Expand All @@ -46,7 +45,11 @@ sysml = [
"protoflow-syntax?/sysml",
]
tokio = ["protoflow-core/tokio"]
tracing = ["dep:tracing", "clientele?/tracing"] # FIXME
tracing = [
"protoflow-core/tracing",
"protoflow-blocks/tracing",
"clientele?/tracing",
] # FIXME
unstable = [
"protoflow-blocks?/unstable",
"protoflow-core/unstable",
Expand Down Expand Up @@ -79,7 +82,6 @@ protoflow-derive = { version = "=0.4.3", optional = true }
protoflow-flume = { version = "=0.4.3", default-features = false, optional = true }
protoflow-syntax = { version = "=0.4.3", default-features = false, optional = true }
protoflow-zeromq = { version = "=0.4.3", default-features = false, optional = true }
tracing = { version = "0.1", default-features = false, optional = true }

[dev-dependencies]
tokio = { version = "1.40.0", default-features = false }
Expand Down
Loading