Skip to content

Commit 3f1959f

Browse files
Upgrade to spacetimedb 2.0.2 (#115)
* Migrate SpacetimeDB from 2.0.1 to 2.0.2 * Bump version from 0.18.0 to 0.18.1
1 parent 28b9f66 commit 3f1959f

File tree

6 files changed

+32
-32
lines changed

6 files changed

+32
-32
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Tamaro Skaljic<mail@tamaro-skaljic.de>"]
33
name = "spacetimedsl"
4-
version = "0.18.0"
4+
version = "0.18.1"
55
edition = "2024"
66
description = "Ergonomic DSL for SpacetimeDB"
77
documentation = "https://docs.rs/spacetimedsl"
@@ -14,10 +14,10 @@ readme = "README.md"
1414

1515
[dependencies]
1616
# https://crates.io/crates/spacetimedb Easy support for interacting between SpacetimeDB and Rust.
17-
spacetimedb = { version = "2.0.1", features = ["unstable"] }
17+
spacetimedb = { version = "2.0.2", features = ["unstable"] }
1818

1919
# https://crates.io/crates/spacetimedsl_derive Macros to extend SpacetimeDSL
20-
spacetimedsl_derive = { version = "0.18.0", path = "derive" }
20+
spacetimedsl_derive = { version = "0.18.1", path = "derive" }
2121

2222
# https://crates.io/crates/itertools Extra iterator adaptors, iterator methods, free functions, and macros.
2323
itertools = "^0.14"

derive-input/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Tamaro Skaljic<mail@tamaro-skaljic.de>"]
33
name = "spacetimedsl_derive-input"
4-
version = "0.18.0"
4+
version = "0.18.1"
55
edition = "2024"
66
description = "Contains structs which represent the input and output of SpacetimeDSL. Can be used by other proc-macro crates to build Macros which utilize SpacetimeDSL under the hood."
77
documentation = "https://docs.rs/spacetimedsl_derive-input"
@@ -29,7 +29,7 @@ quote = "1"
2929
itertools = "0.14.0"
3030

3131
# https://crates.io/crates/spacetimedb Easy support for interacting between SpacetimeDB and Rust.
32-
spacetimedb = { version = "2.0.1", features = ["unstable"] }
32+
spacetimedb = { version = "2.0.2", features = ["unstable"] }
3333

3434
# https://crates.io/crates/spacetime-bindings-macro-input Unofficial Input Crate for the SpacetimeDB Macro Bindings.
3535
spacetime-bindings-macro-input = "2.0.1"

derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Tamaro Skaljic<mail@tamaro-skaljic.de>"]
33
name = "spacetimedsl_derive"
4-
version = "0.18.0"
4+
version = "0.18.1"
55
edition = "2024"
66
description = "Macros to extend SpacetimeDSL. You shouldn't depend on this directly and instead use the spacetimedsl crate."
77
documentation = "https://docs.rs/spacetimedsl_derive"
@@ -35,4 +35,4 @@ rust-format = { version = "0.3.4", features = [
3535
] }
3636

3737
# https://crates.io/crates/spacetimedsl_derive-input Contains structs which represent the output of SpacetimeDSL. Can be used by other proc-macro crates to build Macros which utilize SpacetimeDSL under the hood.
38-
spacetimedsl_derive-input = { version = "0.18.0", path = "../derive-input" }
38+
spacetimedsl_derive-input = { version = "0.18.1", path = "../derive-input" }

examples/blackholio/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedsl_blackholio"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2024"
55
publish = false
66

@@ -9,10 +9,10 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
# https://crates.io/crates/spacetimedb Easy support for interacting between SpacetimeDB and Rust.
12-
spacetimedb = { version = "2.0.1", features = ["unstable"] }
12+
spacetimedb = { version = "2.0.2", features = ["unstable"] }
1313

1414
# https://crates.io/crates/spacetimedsl Ergonomic DSL for SpacetimeDB
15-
spacetimedsl = { version = "0.18.0", path = "../.." }
15+
spacetimedsl = { version = "0.18.1", path = "../.." }
1616

1717
# https://crates.io/crates/log A lightweight logging facade for Rust
1818
log = "0.4"

examples/test/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spacetimedsl_test"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
edition = "2024"
55
publish = false
66

@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
1212
proc-macro2 = { version = "1", features = ["span-locations"] }
1313

1414
# https://crates.io/crates/spacetimedb Easy support for interacting between SpacetimeDB and Rust.
15-
spacetimedb = { version = "2.0.1", features = ["unstable"] }
15+
spacetimedb = { version = "2.0.2", features = ["unstable"] }
1616

1717
# https://crates.io/crates/syn Parser for Rust source code
1818
syn = { default-features = false, features = [
@@ -22,7 +22,7 @@ syn = { default-features = false, features = [
2222
], version = "2" }
2323

2424
# https://crates.io/crates/spacetimedsl Ergonomic DSL for SpacetimeDB
25-
spacetimedsl = { version = "0.18.0", path = "../.." }
25+
spacetimedsl = { version = "0.18.1", path = "../.." }
2626

2727
# https://crates.io/crates/log A lightweight logging facade for Rust
2828
log = "0.4"

0 commit comments

Comments
 (0)