Skip to content

Commit

Permalink
use only a single version for all artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Jul 29, 2024
1 parent 43afa03 commit ae14d4c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[workspace.package]
version = "2.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/dasch-swiss/dsp-meta"
Expand Down
2 changes: 1 addition & 1 deletion dsp-domain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dsp-domain"
version = "2.0.0"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions dsp-meta-cmd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dsp-meta-cmd"
version = "2.0.0"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
Expand All @@ -13,7 +13,7 @@ authors.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dsp-meta = { path = "../dsp-meta", version = "0.1.3" }
dsp-meta = { path = "../dsp-meta" }
anyhow.workspace = true
axum.workspace = true
axum-macros.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions dsp-meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dsp-meta"
version = "0.1.3"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
Expand All @@ -13,7 +13,7 @@ authors.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dsp-domain = { path = "../dsp-domain", version = "2.0.0" }
dsp-domain = { path = "../dsp-domain" }
anyhow.workspace = true
axum.workspace = true
axum-macros.workspace = true
Expand Down

0 comments on commit ae14d4c

Please sign in to comment.