first commit

This commit is contained in:
2025-08-06 06:33:11 +00:00
commit 0679c3a733
10 changed files with 3368 additions and 0 deletions

26
Cargo.toml Normal file
View File

@ -0,0 +1,26 @@
[package]
name = "tesnig"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "oversdb"
path = "bin/oversdb.rs"
[[bin]]
name = "skytable"
path = "bin/skytable.rs"
[[bin]]
name = "redis"
path = "bin/redis.rs"
[lib]
name = "benchmark_oversdb"
path = "src/lib.rs"
[dependencies]
skytable = "0.8.12"
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
redis = { version = "0.32.4", features = ["tokio-comp"] }