pos nomas

This commit is contained in:
aguitauwu
2026-02-16 11:41:18 -06:00
parent d0d85c8fb5
commit 5a4b5b83dd
24 changed files with 1021 additions and 199 deletions

24
yuubox-core/Cargo.toml Normal file
View File

@@ -0,0 +1,24 @@
[package]
name = "yuubox-core"
version = "1.0.0"
edition = "2021"
license = "Apache-2.0"
[lib]
name = "yuubox_core"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.20", features = ["extension-module", "abi3-py39"] }
tokio = { version = "1.35", features = ["full"] }
bollard = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4"
anyhow = "1.0"
thiserror = "1.0"
uuid = { version = "1.6", features = ["v4"] }
futures-util = "0.3"
[dev-dependencies]
tokio-test = "0.4"