-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
60 lines (58 loc) · 1.32 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
60
[package]
name = "ibm_db"
version = "1.0.5"
authors = ["Binit Kumar <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "A tool for DB2 connectivity using CLI Driver"
readme = "README.md"
homepage = "https://docs.rs/ibm_db/1.0.5/ibm_db/"
repository = "https://github.com/ibmdb/rust-ibm_db"
keywords = ["cli", "db2", "clidb2", "rustdb2"]
edition = "2018"
build = "build.rs"
links = "db2"
include = [
"**/*.rs",
"Cargo.toml"
]
[lib]
name = "ibm_db"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
cc = "1.0"
winapi = "0.2"
user32-sys = "0.2"
sys-info = "0.7.0"
bitness = "0.4.0"
error-chain = "0.12.4"
tempfile = "3.1.0"
reqwest = "0.10.10"
tokio = { version = "0.2", features = ["full"] }
futures = "0.3.8"
zip = "0.5"
flate2 = "1.0"
tar = "0.4"
[dependencies]
winapi = "0.2"
user32-sys = "0.2"
sys-info = "0.7.0"
bitness = "0.4.0"
error-chain = "0.12.4"
tempfile = "3.1.0"
reqwest = "0.10.10"
#reqwest = { version = "0.10", features = ["json"] }
tokio = { version = "0.2", features = ["full"] }
futures = "0.3.8"
zip = "0.5"
flate2 = "1.0"
tar = "0.4"
#Added Later
odbc-safe = "0.5.0"
odbc-sys = "0.8.2"
log = "0.4.1"
encoding_rs = "0.8.14"
prettytable-rs = "^0.8"
#Added for connection pooling
lazy_static = "1.0"
r2d2 = "0.8"