-
Notifications
You must be signed in to change notification settings - Fork 499
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "mz-sql-parser"
description = "The parser for Materialize's SQL dialect."
version = "0.0.0"
exclude = ["tests/testdata"]
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
bytesize.workspace = true
datadriven = { workspace = true, optional = true }
enum-kinds.workspace = true
itertools.workspace = true
mz-ore = { path = "../ore", default-features = false, features = ["stack", "assert-no-tracing"] }
mz-sql-lexer = { path = "../sql-lexer", default-features = false }
phf.workspace = true
serde.workspace = true
smallvec = { workspace = true, features = ["union"] }
thiserror.workspace = true
tracing.workspace = true
uncased.workspace = true
unicode-width = { workspace = true, optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
mz-ore = { path = "../ore", default-features = false, features = ["assert"] }
[dev-dependencies]
mz-ore = { path = "../ore", default-features = false, features = ["test"] }
mz-sql-parser = { path = ".", default-features = false, features = ["test"] }
[build-dependencies]
anyhow.workspace = true
mz-ore-build = { path = "../ore-build", default-features = false }
mz-walkabout = { path = "../walkabout", default-features = false }
[features]
default = []
test = ["datadriven", "unicode-width"]