Skip to content

Commit de07d73

Browse files
committed
update cargo meta
1 parent 4e2e8ec commit de07d73

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

crates/notation_bevy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ native = [
3535
]
3636

3737
[dependencies]
38-
notation_bevy_utils = { path = "../notation_bevy_utils" }
38+
notation_bevy_utils = { version = "0.1.0", path = "../notation_bevy_utils" }
3939

4040
notation_model = { path = "../notation_model" }
4141
notation_midi = { path = "../notation_midi" }

crates/notation_bevy_utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dev = [
2727
]
2828

2929
[dependencies]
30-
serde = {version = "1.0.126", features = ["derive"]}
30+
serde = { version = "1.0.126", features = ["derive"] }
3131
# https://github.com/serde-rs/serde/issues/1937
3232
serde_arrays = "0.1.0"
3333
anyhow = "1.0"
@@ -37,10 +37,10 @@ float_eq = "0.6"
3737
bevy = { version = "0.5.0", default-features = false }
3838
winit = "0.24.0"
3939
rand = "0.8"
40-
getrandom = {version="0.2", features=["wasm-bindgen"]}
40+
getrandom = { version="0.2", features=["wasm-bindgen"] }
4141

4242
bevy_prototype_lyon = "0.3.1"
4343
bevy_egui = "0.6"
44-
bevy_easings = { path = "../../lib/bevy_easings" }
44+
bevy_easings = "0.4.1"
4545

4646
bevy-inspector-egui = { version = "0.5.1", optional = true }

crates/notation_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ description = "Fun notation - definition for core concepts"
1313

1414
[dependencies]
1515
fehler = "1.0"
16-
serde = {version = "1.0.126", features = ["derive"]}
16+
serde = { version = "1.0.126", features = ["derive"] }

crates/notation_fretted/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ description = "Fun notation - definition for fretted instruments"
1212
[lib]
1313

1414
[dependencies]
15-
notation_core = { path = "../notation_core" }
15+
notation_core = { version = "0.1.0", path = "../notation_core" }
1616

17-
serde = {version = "1.0.126", features = ["derive"]}
17+
serde = { version = "1.0.126", features = ["derive"] }
1818

1919
# https://github.com/serde-rs/serde/issues/1937
2020
serde_arrays = "0.1.0"

crates/notation_guitar/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "Fun notation - definition for guitar"
1111
[lib]
1212

1313
[dependencies]
14-
notation_core = { path = "../notation_core" }
15-
notation_fretted = { path = "../notation_fretted" }
14+
notation_core = { version = "0.1.0", path = "../notation_core" }
15+
notation_fretted = { version = "0.1.0", path = "../notation_fretted" }
1616

17-
serde = {version = "1.0.126", features = ["derive"]}
17+
serde = { version = "1.0.126", features = ["derive"] }

crates/notation_midi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ inspector = [
1616
]
1717

1818
[dependencies]
19-
notation_model = { path = "../notation_model" }
19+
notation_model = { version = "0.1.0", path = "../notation_model" }
2020

2121
midir = "0.7"
2222
bevy = { version = "0.5.0", default-features = false }

crates/notation_model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "Fun notation - runtime models"
1111
[lib]
1212

1313
[dependencies]
14-
notation_proto = { path = "../notation_proto" }
14+
notation_proto = { version = "0.1.0", path = "../notation_proto" }
1515
thiserror = "1.0"
1616
fehler = "1.0"
1717
uuid = { version = "0.8", features = ["serde", "v4"] }

crates/notation_proto/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ description = "Fun notation - protocol for storage"
1212
[lib]
1313

1414
[dependencies]
15-
serde = {version = "1.0.126", features = ["derive", "alloc"]}
15+
serde = { version = "1.0.126", features = ["derive", "alloc"] }
1616
uuid = { version = "0.8", features = ["serde", "v4"] }
1717

18-
notation_core = { path = "../notation_core" }
19-
notation_fretted = { path = "../notation_fretted" }
20-
notation_guitar = { path = "../notation_guitar" }
18+
notation_core = { version = "0.1.0", path = "../notation_core" }
19+
notation_fretted = { version = "0.1.0", path = "../notation_fretted" }
20+
notation_guitar = { version = "0.1.0", path = "../notation_guitar" }

0 commit comments

Comments
 (0)