58 lines
1.2 KiB
TOML
58 lines
1.2 KiB
TOML
[package]
|
|
name = "herodb"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A database library built on top of ourdb with model support"
|
|
license = "MIT"
|
|
authors = ["HeroCode Team"]
|
|
|
|
[dependencies]
|
|
ourdb = { path = "../ourdb" }
|
|
tst = { path = "../tst" }
|
|
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.21.0"
|
|
paste = "1.0"
|
|
lazy_static = "1.4.0"
|
|
|
|
[[example]]
|
|
name = "rhai_demo"
|
|
path = "examples/rhai_demo.rs"
|
|
|
|
[[example]]
|
|
name = "business_models_demo"
|
|
path = "examples/business_models_demo.rs"
|
|
|
|
[[example]]
|
|
name = "ourdb_example"
|
|
path = "examples/ourdb_example.rs"
|
|
|
|
[[example]]
|
|
name = "tst_index_example"
|
|
path = "examples/tst_index_example.rs"
|
|
|
|
[[bin]]
|
|
name = "dbexample_prod"
|
|
path = "src/cmd/dbexample_prod/main.rs"
|
|
|
|
[[bin]]
|
|
name = "dbexample_mcc"
|
|
path = "src/cmd/dbexample_mcc/main.rs"
|
|
|
|
[[bin]]
|
|
name = "dbexample_gov"
|
|
path = "src/cmd/dbexample_gov/main.rs"
|
|
|
|
[[bin]]
|
|
name = "dbexample_biz"
|
|
path = "src/cmd/dbexample_biz/main.rs"
|