31 lines
719 B
TOML
31 lines
719 B
TOML
|
|
[package]
|
||
|
|
name = "vapora-analytics"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tokio-stream = "0.1"
|
||
|
|
futures = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
chrono = { workspace = true }
|
||
|
|
uuid = { workspace = true }
|
||
|
|
async-trait = { workspace = true }
|
||
|
|
surrealdb = { workspace = true }
|
||
|
|
dashmap = { workspace = true }
|
||
|
|
parking_lot = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
criterion = { workspace = true }
|
||
|
|
|
||
|
|
[[bench]]
|
||
|
|
name = "pipeline_benchmarks"
|
||
|
|
harness = false
|