1
Fork 0
mirror of https://github.com/RGBCube/cstree synced 2025-07-28 17:47:44 +00:00
cstree/Cargo.toml
DQ c061bf5a6b
Migrate to stable strict provenance APIs and elide some redundant lifetimes (#71)
* elide unnecessary lifetimes in `PartialEq` impls for `Symbol`

* remove strict provenance polyfill after std APIs are now stable

this raises MSRV to 1.84

* elide more redundant lifetimes

---------

Co-authored-by: Domenic Quirl <DomenicQuirl@protonmail.com>
2025-02-02 18:43:46 +01:00

22 lines
553 B
TOML

[workspace]
members = [
"cstree",
"cstree-derive",
"test_suite",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.12.2" # when updating, also update `#![doc(html_root_url)]` and any inter-crate dependencies (such as `cstree`'s dependency on `cstree-derive`)
authors = [
"Domenic Quirl <DomenicQuirl@pm.me>",
"Aleksey Kladov <aleksey.kladov@gmail.com>",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/domenicquirl/cstree"
readme = "README.md"
rust-version = "1.84"
[profile.release]
debug = true