-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
31 lines (29 loc) · 985 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
[package]
name = "naive-sql"
version = "0.1.0"
authors = ["Little-Wallace <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlparser = "0.9"
msql-srv = { git = "https://github.com/Little-Wallace/msql-srv.git", branch = "async", default-features = false }
mysql_common = "0.22"
byteorder = "1"
mysql = "*"
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
thiserror = "1.0"
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
tikv-client = { git = "https://github.com/tikv/client-rust.git", branch = "master"}
[workspace]
# See https://github.com/rust-lang/rfcs/blob/master/text/2957-cargo-features2.md
# Without resolver = 2, using `cargo build --features x` to build `cmd`
# will _not_ propagate the feature `x` into `cmd`'s direct dependencies.
resolver = "2"
members = [
"cmd"
]
default-members = ["cmd"]