Skip to content

Commit 25f38fd

Browse files
committed
fix no_std for crate uploads
1 parent 54a595a commit 25f38fd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

crates/firewheel-cpal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ tracing = ["dep:tracing"]
2525
log = ["dep:log"]
2626

2727
[dependencies]
28-
firewheel-core = { path = "../firewheel-core", version = "0.10.0", default-features = false }
29-
firewheel-graph = { path = "../firewheel-graph", version = "0.10.0", default-features = false }
28+
firewheel-core = { path = "../firewheel-core", version = "0.10.0", default-features = false, features = ["std"] }
29+
firewheel-graph = { path = "../firewheel-graph", version = "0.10.0", default-features = false, features = ["std"] }
3030
cpal = "0.17.1"
3131
tracing = { workspace = true, optional = true }
3232
log = { workspace = true, optional = true }

crates/firewheel-rtaudio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ log = ["dep:log", "rtaudio/log"]
2525
serde = ["dep:serde", "rtaudio/serde"]
2626

2727
[dependencies]
28-
firewheel-core = { path = "../firewheel-core", version = "0.10.0", default-features = false }
29-
firewheel-graph = { path = "../firewheel-graph", version = "0.10.0", default-features = false }
28+
firewheel-core = { path = "../firewheel-core", version = "0.10.0", default-features = false, features = ["std"] }
29+
firewheel-graph = { path = "../firewheel-graph", version = "0.10.0", default-features = false, features = ["std"] }
3030
ringbuf.workspace = true
3131
tracing = { workspace = true, optional = true }
3232
log = { workspace = true, optional = true }

crates/firewheel-symphonium/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tracing = ["symphonium/tracing"]
2727
log = ["symphonium/log"]
2828

2929
[dependencies]
30-
firewheel-core = { path = "../firewheel-core", version = "0.10.0", default-features = false }
30+
firewheel-core = { path = "../firewheel-core", version = "0.10.0", default-features = false, features = ["std"] }
3131
symphonium = { version = "0.7.0", default-features = false }
3232
fixed-resample = { version = "0.9.2", default-features = false, features = [
3333
"resampler",

0 commit comments

Comments
 (0)