initialize
This commit is contained in:
commit
f6e3fdd3c2
22 changed files with 7447 additions and 0 deletions
38
Cargo.toml
Normal file
38
Cargo.toml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
[package]
|
||||
name = "silserv"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
authors = ["pakin"]
|
||||
description = "Container manager service for testing"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.98"
|
||||
async-trait = "0.1.88"
|
||||
axum = "0.8.4"
|
||||
bollard = "0.19.2"
|
||||
chrono = { version = "0.4.41", features = ["serde"] }
|
||||
clap = { version = "4.5.43", features = ["derive"] }
|
||||
config = "0.15.13"
|
||||
futures = "0.3.31"
|
||||
hyper = { version = "1.6.0", features = ["full"] }
|
||||
ipnet = "2.11.0"
|
||||
regex = "1.11.1"
|
||||
reqwest = { version = "0.12.22", features = ["json"] }
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.142"
|
||||
sled = "0.34.7"
|
||||
thiserror = "2.0.12"
|
||||
tokio = { version = "1.47.1", features = ["full"] }
|
||||
tokio-cron-scheduler = "0.14.0"
|
||||
tower = "0.5.2"
|
||||
tower-http = { version = "0.6.6", features = ["cors", "trace"] }
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
||||
uuid = { version = "1.17.0", features = ["serde", "v4"] }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio-test = "0.4.4"
|
||||
|
||||
[[bin]]
|
||||
name = "silserv"
|
||||
path = "src/main.rs"
|
||||
Loading…
Add table
Add a link
Reference in a new issue