Nicole Tietz-Sokolskaya
77d4ebb371
backed up by experiments demonstrating that SQLite will meet all of our requirements. This also introduces ADRs in the repo, and adds a README in preparation making the repository public.
28 lines
872 B
TOML
28 lines
872 B
TOML
[package]
|
|
name = "bench"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.80"
|
|
chrono = { version = "0.4.35", features = ["now"] }
|
|
criterion = { version = "0.5.1", features = ["async", "async_tokio", "async_futures", "async_std"] }
|
|
dotenvy = "0.15.7"
|
|
entity = { version = "0.1.0", path = "entity" }
|
|
env_logger = "0.11.3"
|
|
futures = "0.3.30"
|
|
log = "0.4.21"
|
|
migration = { version = "0.1.0", path = "migration" }
|
|
rand = "0.8.5"
|
|
sea-orm = { version = "0.12.14", features = ["sqlx-mysql", "sqlx-sqlite", "sqlx-postgres", "macros", "runtime-async-std-rustls"] }
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
tokio = { version = "1.36.0", features = ["full", "rt"] }
|
|
|
|
[workspace]
|
|
members = [".", "entity", "migration"]
|
|
|
|
[[bench]]
|
|
name = "db"
|
|
harness = false
|