Cleanup Cargo.tomls (#745)

This commit is contained in:
Lukas Wirth 2025-03-05 16:45:16 +01:00 committed by GitHub
parent 4d9225342e
commit 7a45da93c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 26 additions and 19 deletions

View file

@ -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"
@ -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]
@ -56,7 +56,6 @@ tikv-jemallocator = "0.6.0"
name = "compare"
harness = false
[[bench]]
name = "incremental"
harness = false
@ -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"

View file

@ -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

View file

@ -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]

View file

@ -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]