api/Cargo.toml

17 lines
552 B
TOML
Raw Normal View History

2024-09-23 11:26:19 +01:00
[package]
name = "lnvps"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
http = "1.1.0"
2024-10-26 19:36:06 +01:00
proxmox-client = { git = "git://git.proxmox.com/git/proxmox.git", branch = "master", features = ["hyper-client"] }
2024-09-23 11:26:19 +01:00
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
anyhow = "1.0.83"
log = "0.4.21"
2024-10-26 19:36:06 +01:00
config = { version = "0.14.0", features = ["toml"] }
2024-09-23 11:26:19 +01:00
pretty_env_logger = "0.5.0"
2024-10-26 19:36:06 +01:00
serde = { version = "1.0.213", features = ["derive"] }