2021-08-19 17:07:52 +00:00
|
|
|
[package]
|
|
|
|
name = "iox_data_generator"
|
|
|
|
default-run = "iox_data_generator"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-08-19 17:07:52 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
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-09-29 11:14:38 +00:00
|
|
|
clap = { version = "4", features = ["derive", "env", "cargo"] }
|
2022-10-19 12:59:53 +00:00
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2021-11-24 20:14:29 +00:00
|
|
|
futures = "0.3"
|
2022-12-22 18:53:45 +00:00
|
|
|
handlebars = "4.3.6"
|
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" }
|
2022-09-21 08:15:59 +00:00
|
|
|
itertools = "0.10.5"
|
2022-09-23 15:51:39 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
|
|
|
parquet_file = { path = "../parquet_file" }
|
2021-08-19 17:07:52 +00:00
|
|
|
rand = { version = "0.8.3", features = ["small_rng"] }
|
2022-11-08 09:57:49 +00:00
|
|
|
regex = "1.7"
|
2022-09-23 15:51:39 +00:00
|
|
|
schema = { path = "../schema" }
|
2021-08-19 17:07:52 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-03-28 11:09:59 +00:00
|
|
|
serde_json = "1.0.95"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2023-03-30 09:36:04 +00:00
|
|
|
tokio = { version = "1.27", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
2023-03-14 02:06:04 +00:00
|
|
|
toml = "0.7.3"
|
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-09-12 08:47:35 +00:00
|
|
|
criterion = { version = "0.4", default-features = false, features = ["rayon"]}
|
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
|
2022-08-16 08:11:23 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
# Allow --save-baseline to work
|
|
|
|
# https://github.com/bheisler/criterion.rs/issues/275
|
|
|
|
bench = false
|