Skip to content

Commit

Permalink
chore: dump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyMichaelTDM committed Oct 12, 2024
1 parent ea5dce7 commit 38e28a8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

16 changes: 10 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,16 @@ opentelemetry-semantic-conventions = { version = "0.16.0" }
tracing-flame = "0.2.0"

# MECOMP packages
mecomp-analysis = { path = "analysis", version = "0.1" }
mecomp-core = { path = "core", default-features = false, version = "0.1" }
mecomp-daemon = { path = "daemon", version = "0.1" }
mecomp-storage = { path = "storage", default-features = false, version = "0.1" }
surrealqlx = { path = "surrealqlx/lib", features = ["macros"], version = "0.1" }
one-or-many = { path = "one-or-many", version = "0.1" }
mecomp-analysis = { path = "analysis", version = "0.1.1" }
mecomp-core = { path = "core", default-features = false, version = "0.1.1" }
mecomp-daemon = { path = "daemon", version = "0.1.1" }
mecomp-storage = { path = "storage", default-features = false, version = "0.1.1" }
surrealqlx = { path = "surrealqlx/lib", features = [
"macros",
], version = "0.1.0" }
surrealqlx-macros = { path = "surrealqlx/macros", version = "0.1.0" }
surrealqlx-macros-impl = { path = "surrealqlx/macros-impl", version = "0.1.0" }
one-or-many = { path = "one-or-many", version = "0.1.0" }

# shared dev dependencies
pretty_assertions = "1.4"
Expand Down
4 changes: 2 additions & 2 deletions surrealqlx/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealqlx"
version.workspace = true
version = "0.1.0"
edition.workspace = true
authors.workspace = true
description = "Some traits and macros to make it easier to work with surrealdb"
Expand All @@ -22,6 +22,6 @@ macros = ["surrealqlx-macros"]

[dependencies]
surrealdb.workspace = true
surrealqlx-macros = { path = "../macros", optional = true, version = "0.1" }
surrealqlx-macros = { workspace = true, optional = true }
mecomp-workspace-hack = { version = "0.1", path = "../../mecomp-workspace-hack" }
# tracing.workspace = true
2 changes: 1 addition & 1 deletion surrealqlx/macros-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealqlx-macros-impl"
version.workspace = true
version = "0.1.0"
edition.workspace = true
authors.workspace = true
description = "SurrealQLX macros implementation"
Expand Down
4 changes: 2 additions & 2 deletions surrealqlx/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "surrealqlx-macros"
version.workspace = true
version = "0.1.0"
edition.workspace = true
authors.workspace = true
description = "Macros for surrealqlx"
Expand All @@ -20,5 +20,5 @@ bench = false

[dependencies]
syn = { version = "2.0", default-features = false }
surrealqlx-macros-impl = { path = "../macros-impl", version = "0.1" }
surrealqlx-macros-impl.workspace = true
mecomp-workspace-hack = { version = "0.1", path = "../../mecomp-workspace-hack" }

0 comments on commit 38e28a8

Please sign in to comment.