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"
|
2022-06-14 19:43:22 +00:00
|
|
|
clap = { version = "3", features = ["derive", "env", "cargo"] }
|
2021-11-24 20:14:29 +00:00
|
|
|
futures = "0.3"
|
2022-07-21 06:23:27 +00:00
|
|
|
handlebars = "4.3.3"
|
2021-09-19 11:27:24 +00:00
|
|
|
humantime = "2.1.0"
|
2021-08-19 17:07:52 +00:00
|
|
|
influxdb2_client = { path = "../influxdb2_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"] }
|
2022-07-06 10:25:28 +00:00
|
|
|
regex = "1.6"
|
2021-08-19 17:07:52 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-08-04 14:28:29 +00:00
|
|
|
serde_json = "1.0.83"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2022-07-14 01:21:43 +00:00
|
|
|
tokio = { version = "1.20", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2022-04-15 14:55:18 +00:00
|
|
|
toml = "0.5.9"
|
2021-08-19 17:07:52 +00:00
|
|
|
tracing = "0.1"
|
2021-12-02 22:12:15 +00:00
|
|
|
tracing-subscriber = "0.3"
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", default_features = false }
|
2021-08-19 17:07:52 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-07 07:09:27 +00:00
|
|
|
criterion = "0.3.6"
|
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
|