forked from partiql/partiql-rust-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 964 Bytes
/
Cargo.toml
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
[package]
name = "partiql-playground"
authors = ["PartiQL Team <[email protected]>"]
description = "PartiQL Playground"
homepage = "https://github.com/partiql/partiql-lang-rust"
repository = "https://github.com/partiql/partiql-lang-rust"
license = "Apache-2.0"
readme = "../README.md"
keywords = ["sql", "ast", "query", "compilers", "playground"]
categories = ["database", "compilers", "wasm", "web"]
exclude = [
"**/.git/**",
"**/.github/**",
]
edition = "2021"
version = "0.2.0"
[workspace]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
partiql-parser = { version = "0.3.*", features=["serde"] }
partiql-logical-planner = { version = "0.3.*"}
partiql-eval = { version = "0.3.*"}
partiql-value = { version = "0.3.*", features=["serde"] }
partiql-logical = { version = "0.3.*", features=["serde"] }
serde_json = "1.*"
wasm-bindgen = "0.2"