-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (44 loc) · 1.58 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "martlet-mesh-data-panel"
version = "0.1.0"
authors = ["AlphaPo <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
data-panel-common = { path = "../data-panel-common", version = "0.1.0-SNAPSHOT" }
data-panel-database = { path = "../data-panel-database", version = "0.1.0-SNAPSHOT" }
futures = "0.3"
tokio = { version = "1.1", features = ["full"] }
tokio-util = { version = "0.6", features = ["full"] }
tokio-stream = "0.1"
bytes = "1.0"
# sqlparser = "0.8"
sqlparser = { git = "https://github.com/juaby/sqlparser-rs", branch = "po/mysql" }
# sqlx = { version = "0.4", default-features = false, features = [ "runtime-tokio", "tls", "mysql", "postgres", "bigdecimal", "json", "chrono", "ipnetwork", "uuid" ]}
# sqlx = { version = "0.4", default-features = false, features = [ "runtime-tokio", "macros", "all" ]}
mysql = "20.1"
# mysql_async = "0.26"
# r2d2 = "0.8"
# r2d2_mysql = "18.0"
mysqlbinlog = "0.1.5"
rand = "0.8.2"
bitflags = "1.2.1"
byteorder = "1.4.2"
hyper = "0.14"
serde_json = "1.0.61"
chrono = "0.4.19"
log = "0.4.13"
env_logger = "0.8.2"
clap = { version = "2.33", features = ["yaml"] }
yaml-rust = "0.4.5"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
toml = "0.5"
rhai = { version = "0.19" }
lazy_static = "1.4.0"
dashmap = "4.0.2"
casbin = { version = "2.0.5", default-features = false, features = ["runtime-async-std", "logging"] }
async-std = { version = "1.9.0", features = ["attributes"] }
async-trait = "0.1.48"
[build-dependencies]
cc = "1.0"