Initial commit: CPU management API

This commit is contained in:
Popov Aleksandr
2025-10-09 18:02:17 +03:00
commit 255706974f
13 changed files with 509 additions and 0 deletions

14
Cargo.toml Normal file
View File

@ -0,0 +1,14 @@
[package]
name = "cpu-server"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.7"
tokio = { version = "1.0", features = ["full"] }
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "macros"] }
config = "0.14"
serde = { version = "1.0", features = ["derive"] }
utoipa = "5.3"
env_logger = "0.10"
log = "0.4"