mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 14:22:58 +00:00
* feat: add create table expr translator * feat: add alter table expr translator * refactor: expose mod * refactor: expr generator * chore: ignore typos check for lorem_words * feat: add string map helper functions * chore: remove unit tests
34 lines
818 B
TOML
34 lines
818 B
TOML
[package]
|
|
name = "tests-fuzz"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
common-error = { workspace = true }
|
|
common-macro = { workspace = true }
|
|
common-query = { workspace = true }
|
|
common-telemetry = { workspace = true }
|
|
datatypes = { workspace = true }
|
|
derive_builder = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
partition = { workspace = true }
|
|
rand = { workspace = true }
|
|
rand_chacha = "0.3.1"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
snafu = { workspace = true }
|
|
sql = { workspace = true }
|
|
sqlparser.workspace = true
|
|
|
|
[dev-dependencies]
|
|
dotenv = "0.15"
|
|
sqlx = { version = "0.6", features = [
|
|
"runtime-tokio-rustls",
|
|
"mysql",
|
|
"postgres",
|
|
"chrono",
|
|
] }
|
|
tokio = { workspace = true }
|