Files
kramer/Cargo.toml
2026-01-02 01:46:12 -05:00

34 lines
818 B
TOML

[package]
name = "kramer"
version = "0.1.0"
edition = "2024"
authors = ["Olivia Brooks"]
repository = "https://gitea.cutieguwu.ca/cutieguwu/kramer"
license = "MIT"
publish = false
[dependencies]
ron = ">=0.8, <0.13"
#rust-i18n = "3.1.3"
[dependencies.anyhow]
version = "1.0"
features = ["backtrace"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
# Yes. For one constant, this library is required.
# Technically, this did a bit more in early testing when I messed about
# with unsafe ffi disasters trying to solve problems.
#
# And yes, I spent time tracking down the first release with that constant.
# v0.2.25 is almost 9 years old as of writing this comment
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
libc = "~0.2.25"