pacwrap/Cargo.toml
Xavier Moffett 45466638fe
Replace lazy_static crate with LazyLock using the lazy_lock macro
- Introduce `lazy_lock` macro to maintain compatibility with former
  lazy_static declarations, and remove `lazy_static` as a package
  dependency for pacwrap-core.
- Replace needlessly verbose ansi functions with `ansi` macro block.
- Update workspace 'Cargo.toml' and `README.md` to change the MSRV
  from 1.72 to 1.80.
- Update `Cargo.lock`
2025-02-09 19:49:44 -05:00

25 lines
719 B
TOML

[workspace]
resolver = "2"
members = ["pacwrap", "pacwrap-agent", "pacwrap-core"]
[workspace.package]
version = "0.8.7"
edition = "2021"
rust-version = "1.80"
readme = "README.md"
license = "GPL-3.0-only"
authors = [ "Xavier Moffett <sapphirus@azorium.net>" ]
keywords = [ "bubblewrap", "sandbox", "package", "manager", "archlinux" ]
categories = [ "command-line-utilities", "virtualization", "filesystem", "concurrency", "caching" ]
homepage = "https://pacwrap.sapphirus.org/"
repository = "https://github.com/pacwrap/pacwrap"
[workspace.dependencies]
pacwrap-core = { version = "0.8.7", path = "pacwrap-core" }
alpm = { version = "4.0.1", features = ["checkver"] }
[profile.release]
lto = "thin"
opt-level = "s"