influxdb/iox_data_generator/Cargo.toml

35 lines
931 B
TOML
Raw Normal View History

[package]
name = "iox_data_generator"
version = "0.1.0"
authors = ["Paul Dix <paul@pauldix.net>"]
2021-10-25 08:45:44 +00:00
edition = "2021"
default-run = "iox_data_generator"
[dependencies]
chrono = { version = "0.4", default-features = false }
chrono-english = "0.1.4"
2022-01-17 11:12:46 +00:00
clap = { version = "3", features = ["cargo"] }
futures = "0.3"
handlebars = "4.3.1"
humantime = "2.1.0"
influxdb2_client = { path = "../influxdb2_client" }
itertools = "0.10.0"
rand = { version = "0.8.3", features = ["small_rng"] }
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
2022-01-11 19:22:36 +00:00
snafu = "0.7"
tokio = { version = "1.19", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
toml = "0.5.9"
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "0.8.1", default_features = false }
[dev-dependencies]
criterion = "0.3.3"
test_helpers = { path = "../test_helpers" }
[[bench]]
name = "point_generation"
harness = false