pueue/Cargo.toml

39 lines
1,013 B
TOML
Raw Normal View History

# The project is a top-level crate *as well* as a workspace.
# The `pueue_lib` crate lives in the `lib` folder.
# The following is the shared configuration for both pueue and its lib
[workspace]
2023-07-04 08:14:26 +00:00
members = ["pueue", "pueue_lib"]
2023-08-24 16:51:50 +00:00
resolver = "2"
[workspace.package]
authors = ["Arne Beer <contact@arne.beer>"]
homepage = "https://github.com/nukesor/pueue"
repository = "https://github.com/nukesor/pueue"
license = "MIT"
edition = "2021"
rust-version = "1.67"
[workspace.dependencies]
2024-05-28 16:46:12 +00:00
# Chrono version is hard pinned to a specific version.
# See https://github.com/Nukesor/pueue/issues/534
chrono = { version = "0.4", features = ["serde"] }
2024-03-23 18:34:04 +00:00
command-group = "5"
log = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
serde_derive = "1.0"
snap = "1.1"
2024-03-23 18:34:04 +00:00
strum = "0.26"
strum_macros = "0.26"
tokio = { version = "1.36", features = ["rt-multi-thread", "time", "io-std"] }
handlebars = "5.1"
anyhow = "1"
better-panic = "0.3"
pretty_assertions = "1"
2022-12-13 10:50:17 +00:00
[profile.release]
2024-06-04 22:19:57 +00:00
codegen-units = 1
2022-12-13 10:50:17 +00:00
lto = "thin"
2024-06-04 22:19:57 +00:00
strip = true