forked from instructure/canvas-data-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (38 loc) · 1010 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
[package]
name = "cdl-runner"
version = "0.4.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.9"
chrono = { version = "^0.4", features = [ "serde" ] }
config = "^0.9"
error-chain = "^0.12"
env_logger = "^0.5"
flate2 = { version = "^1.0", features = ["zlib"], default-features = false }
futures = "^0.1"
log = "^0.4"
glob = "^0.2"
lazy_static = "^1.1"
r2d2 = "^0.8"
rayon = "^1.0.2"
regex = "^1.0"
reqwest = "^0.9"
ring = "^0.13"
rocksdb = "^0.10"
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.14", optional = true }
# Mysql Deps
mysql = { version = "^14", optional = true, features = ["ssl"] }