forked from instructure/canvas-data-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1008 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
34
35
36
37
38
39
40
41
42
43
[package]
name = "cdl-runner"
version = "0.3.0"
authors = [
"Canvas Data Support Team <[email protected]>",
"Instructure Engineering <[email protected]>",
"Eric Coan <[email protected]>"
]
[features]
default = [ "postgres_compat", "mysql_compat" ]
postgres_compat = [ "postgres", "r2d2_postgres" ]
mysql_compat = [ "mysql" ]
[dependencies]
base64 = "0.7"
chrono = { version = "0.4", features = [ "serde" ] }
config = "0.8"
error-chain = "0.11"
env_logger = "0.5"
flate2 = { version = "0.2", features = ["zlib"], default-features = false }
futures = "0.1"
log = "0.4"
glob = "0.2"
hyper = "0.11"
hyper-tls = "0.1"
lazy_static = "0.2"
r2d2 = "0.7"
regex = "0.2"
ring = "0.12"
rocksdb = "0.8"
native-tls = "0.1.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tokio-core = "0.1"
# Postgres Deps
postgres = { version = "0.15", optional = true }
r2d2_postgres = { version = "0.13", optional = true }
# Mysql Deps
mysql = { version = "12", optional = true, features = ["ssl"] }