This commit is contained in:
2025-04-03 08:47:35 +02:00
parent cf6c52a2bc
commit 30dade3d06
25 changed files with 3354 additions and 3 deletions

15
herodb/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "herodb"
version = "0.1.0"
edition = "2024"
description = "A database library built on top of sled with model support"
license = "MIT"
authors = ["HeroCode Team"]
[dependencies]
sled = "0.34.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
uuid = { version = "1.3", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }