-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (44 loc) · 1.09 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
[package]
name = "dbc"
version = "0.5.0-dev"
authors = ["Thorsten Mürell <[email protected]>"]
edition = "2018"
[lib]
name = "dbc"
path = "src/lib.rs"
[features]
default = ["sqlite-support", "oracle-support", "mysql-support"]
sqlite-support = ["rusqlite"]
oracle-support = ["oracle"]
mysql-support = ["mysql"]
[dependencies]
anyhow = "1.0.89"
thiserror = "1.0"
rustyline = "14.0.0"
rustyline-derive = "0.10.0"
dirs = "5.0.0"
structopt = "0.3"
prettytable-rs = "^0.10"
colored = "2.1.0"
chrono = "0.4"
oracle = { version = "0.6.2", features = ["chrono"], optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_yml = "0.0.12"
regex = "1.10.6"
csv = "1.3.0"
simple_excel_writer = "0.2"
byteorder = "1.5.0"
nu-plugin = { version = "0.98.0" }
nu-protocol = { version = "0.98.0", features = ["plugin"]}
fallible-iterator = "0.3.0"
[dependencies.rusqlite]
version = "0.32.1"
features = ["bundled"]
optional = true
[dependencies.postgres]
#git = "https://github.com/tmuerell/rust-postgres"
version = "0.19.9"
features = [ "with-chrono-0_4" ]
[dependencies.mysql]
version = "25.0.1"
optional = true