21 lines
500 B
TOML
21 lines
500 B
TOML
|
|
[package]
|
||
|
|
name = "provctl-core"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
rust-version = "1.75"
|
||
|
|
authors = ["Provctl Contributors"]
|
||
|
|
license = "MIT"
|
||
|
|
repository = "https://github.com/provctl"
|
||
|
|
description = "Core types and errors for provctl service management"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
thiserror = "2"
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
log = "0.4"
|
||
|
|
chrono = { version = "0.4", features = ["serde"] }
|
||
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
toml = "0.9"
|
||
|
|
serde_json = "1.0"
|