2021-08-19 17:07:52 +00:00
|
|
|
[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"
|
2021-08-19 17:07:52 +00:00
|
|
|
default-run = "iox_data_generator"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2021-08-19 17:07:52 +00:00
|
|
|
chrono-english = "0.1.4"
|
2021-12-06 09:07:47 +00:00
|
|
|
clap = "2.34.0"
|
2021-11-24 20:14:29 +00:00
|
|
|
futures = "0.3"
|
2021-12-06 08:31:22 +00:00
|
|
|
handlebars = "4.1.6"
|
2021-09-19 11:27:24 +00:00
|
|
|
humantime = "2.1.0"
|
2021-08-19 17:07:52 +00:00
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
influxdb2_client = { path = "../influxdb2_client" }
|
|
|
|
influxdb_iox_client = { path = "../influxdb_iox_client" }
|
2021-09-22 18:25:35 +00:00
|
|
|
itertools = "0.10.0"
|
2021-08-19 17:07:52 +00:00
|
|
|
rand = { version = "0.8.3", features = ["small_rng"] }
|
2021-12-08 21:22:26 +00:00
|
|
|
regex = "1.5"
|
2021-08-19 17:07:52 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-11-29 09:28:07 +00:00
|
|
|
serde_json = "1.0.72"
|
2021-08-19 17:07:52 +00:00
|
|
|
snafu = "0.6.8"
|
2021-12-02 19:46:26 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2021-08-19 17:07:52 +00:00
|
|
|
toml = "0.5.6"
|
|
|
|
tracing = "0.1"
|
2021-12-02 22:12:15 +00:00
|
|
|
tracing-subscriber = "0.3"
|
2021-08-19 17:07:52 +00:00
|
|
|
uuid = { version = "0.8.1", default_features = false }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.3.3"
|
2021-08-19 19:02:34 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2021-08-19 17:07:52 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "point_generation"
|
2021-10-19 08:11:35 +00:00
|
|
|
harness = false
|