Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workspace metadata and use in all the subpackages #33

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,27 @@ 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"
edition = "2021"
keywords = [
"analysis",
"forecasting",
"time-series",
]

[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
Loading