db/herodb/Cargo.toml
2025-04-04 11:25:24 +02:00

28 lines
675 B
TOML

[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"] }
bincode = "1.3"
brotli = "3.4"
tempfile = "3.8"
poem = "1.3.55"
poem-openapi = { version = "2.0.11", features = ["swagger-ui"] }
tokio = { version = "1", features = ["full"] }
rhai = "1.15.1"
paste = "1.0"
[[example]]
name = "rhai_demo"
path = "examples/rhai_demo.rs"