2022-08-18 23:09:45 +00:00
|
|
|
[package]
|
|
|
|
name = "influxdb_influxql_parser"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-08-18 23:09:45 +00:00
|
|
|
|
|
|
|
[dependencies] # In alphabetical order
|
|
|
|
nom = { version = "7", default-features = false, features = ["std"] }
|
2022-10-16 23:33:09 +00:00
|
|
|
once_cell = "1"
|
2023-01-18 02:27:38 +00:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["std"] }
|
2023-01-15 22:00:41 +00:00
|
|
|
chrono-tz = { version = "0.8" }
|
2023-06-01 23:50:01 +00:00
|
|
|
num-integer = { version = "0.1", default-features = false, features = ["i128", "std"] }
|
2023-02-01 00:27:17 +00:00
|
|
|
num-traits = "0.2"
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-08-18 23:09:45 +00:00
|
|
|
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
|
|
test_helpers = { path = "../test_helpers" }
|
2022-10-13 22:37:49 +00:00
|
|
|
assert_matches = "1"
|
2023-07-17 14:01:21 +00:00
|
|
|
insta = { version = "1.31.0", features = ["yaml"] }
|
2023-07-17 16:10:02 +00:00
|
|
|
paste = "1.0.14"
|