Skip to content

Commit

Permalink
Add workspace metadata and use in all the subpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
sd2k committed Sep 8, 2023
1 parent 1b0231e commit d33ceff
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 20 deletions.
17 changes: 13 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,21 @@ members = [
]
resolver = "2"

[workspace.package]
license = "MIT OR Apache-2.0"
authors = [
"Ben Sully <[email protected]",
]
documentation = "https://docs.rs/crate/augurs"
repository = "https://github.com/grafana/augurs"
version = "0.1.0-alpha.0"

[workspace.dependencies]

augurs-core = { version = "0.1.0-alpha.0", path = "crates/augurs-core" }
augurs-ets = { version = "0.1.0-alpha.0", path = "crates/augurs-ets" }
augurs-mstl = { version = "0.1.0-alpha.0", path = "crates/augurs-mstl" }
augurs-testing = { version = "0.1.0-alpha.0", path = "crates/augurs-testing" }
augurs-core = { path = "crates/augurs-core" }
augurs-ets = { path = "crates/augurs-ets" }
augurs-mstl = { path = "crates/augurs-mstl" }
augurs-testing = { path = "crates/augurs-testing" }

distrs = "0.2.1"
itertools = "0.11.0"
Expand Down
8 changes: 6 additions & 2 deletions crates/augurs-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "augurs-core"
version = "0.1.0-alpha.1"
edition = "2021"
version.workspace = true
authors.workspace = true
documentation.workspace = true
license.workspace = true
edition.workspace = true
keywords.workspace = true

[dependencies]
serde = { version = "1.0.166", optional = true, features = ["derive"] }
8 changes: 6 additions & 2 deletions crates/augurs-ets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "augurs-ets"
version = "0.1.0-alpha.1"
edition = "2021"
version.workspace = true
authors.workspace = true
documentation.workspace = true
license.workspace = true
edition.workspace = true
keywords.workspace = true

[dependencies]
augurs-core.workspace = true
Expand Down
9 changes: 6 additions & 3 deletions crates/augurs-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "augurs-js"
version = "0.1.0-alpha.1"
license = "MIT/Apache-2.0"
edition = "2021"
version.workspace = true
authors.workspace = true
documentation.workspace = true
license.workspace = true
edition.workspace = true
keywords.workspace = true

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
9 changes: 6 additions & 3 deletions crates/augurs-mstl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "augurs-mstl"
version = "0.1.0-alpha.1"
license = "MIT/Apache-2.0"
edition = "2021"
version.workspace = true
authors.workspace = true
documentation.workspace = true
license.workspace = true
edition.workspace = true
keywords.workspace = true

[dependencies]
augurs-core.workspace = true
Expand Down
9 changes: 6 additions & 3 deletions crates/augurs-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "augurs-testing"
version = "0.1.0-alpha.1"
license = "MIT/Apache-2.0"
edition = "2021"
version.workspace = true
authors.workspace = true
documentation.workspace = true
license.workspace = true
edition.workspace = true
keywords.workspace = true

[dependencies]
once_cell = "1.18.0"
9 changes: 6 additions & 3 deletions crates/pyaugurs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "pyaugurs"
version = "0.1.0-alpha.1"
license = "MIT/Apache-2.0"
edition = "2021"
version.workspace = true
authors.workspace = true
documentation.workspace = true
license.workspace = true
edition.workspace = true
keywords.workspace = true

[lib]
name = "augurs"
Expand Down

0 comments on commit d33ceff

Please sign in to comment.