2024-11-07 04:41:49 +00:00
|
|
|
[package]
|
|
|
|
name = "p5x"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
env_logger = "0.11.5"
|
|
|
|
log = "0.4.22"
|
|
|
|
rocket = { version = "0.5.1", features = ["json"] }
|
|
|
|
sea-orm = { version = "1.1.0", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"] }
|
|
|
|
sea-orm-rocket = "0.5.4"
|
|
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
|
|
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
async-trait = "0.1.83"
|
|
|
|
rocket_dyn_templates = { version = "0.2.0", features = ["handlebars"] }
|
|
|
|
sea-orm-migration = "1.1.0"
|
|
|
|
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }
|
|
|
|
ssh2 = "0.9.4"
|
|
|
|
futures = { version = "0.3.31", features = ["executor"] }
|
|
|
|
serde_json = "1.0.132"
|
|
|
|
proxmox-api = { git = "https://github.com/glmdev/p5x-proxmox-api", version = "0.1.2-pre", features = ["ureq-client"] }
|
|
|
|
ureq = "2.10.1"
|
2025-02-23 17:42:48 +00:00
|
|
|
dotenv = "0.15.0"
|