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

chore: Cleanup Cargo.tomls #745

Merged
merged 1 commit into from
Mar 5, 2025
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
22 changes: 14 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "salsa"
version = "0.18.0"
authors = ["Salsa developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/salsa-rs/salsa"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "A generic framework for on-demand, incrementalized computation (experimental)"
rust-version = "1.80"

[dependencies]
salsa-macro-rules = { version = "0.1.0", path = "components/salsa-macro-rules" }
salsa-macro-rules = { version = "0.18.0", path = "components/salsa-macro-rules" }
salsa-macros = { version = "0.18.0", path = "components/salsa-macros" }

boxcar = "0.2.9"
Expand All @@ -30,8 +30,8 @@ rayon = { version = "1.10.0", optional = true }
compact_str = { version = "0.8", optional = true }

[features]
# FIXME: remove `salsa_unstable` as a default feature before 1.0.
default = ["salsa_unstable", "rayon"]
# FIXME: remove `salsa_unstable` before 1.0.
salsa_unstable = []

[dev-dependencies]
Expand All @@ -56,7 +56,6 @@ tikv-jemallocator = "0.6.0"
name = "compare"
harness = false


[[bench]]
name = "incremental"
harness = false
Expand All @@ -67,3 +66,10 @@ harness = false

[workspace]
members = ["components/salsa-macro-rules", "components/salsa-macros"]

[workspace.package]
authors = ["Salsa developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/salsa-rs/salsa"
rust-version = "1.80"
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@

## Obligatory warning

Very much a WORK IN PROGRESS at this point. Ready for experimental use
but expect frequent breaking changes.
Very much a WORK IN PROGRESS at this point.

## Credits

Expand Down
11 changes: 6 additions & 5 deletions components/salsa-macro-rules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "salsa-macro-rules"
version = "0.1.0"
edition = "2021"
authors = ["Salsa developers"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/salsa-rs/salsa"
version = "0.18.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "Declarative macros for the salsa crate"

[dependencies]
9 changes: 5 additions & 4 deletions components/salsa-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "salsa-macros"
version = "0.18.0"
authors = ["Salsa developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/salsa-rs/salsa"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "Procedural macros for the salsa crate"

[lib]
Expand Down
Loading