-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
47 lines (39 loc) · 1.16 KB
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
[package]
authors = [
"Georg Semmler <georg.semmler@giga-infosystems.com>",
"Paul Gabriel <paul.gabriel@giga-infosystems.com>",
"Daniel Buse <daniel.buse@giga-infosystems.com>",
]
name = "diesel-oci"
version = "0.1.0"
license = "MIT OR Apache-2.0"
description = "A oci database adapter for diesel"
readme = "README.md"
keywords = ["diesel", "oci", "oracle", "sql"]
categories = ["database"]
[workspace]
members = ["oci-sys"]
[dependencies]
byteorder = "1"
libc = "0.2"
log = "0.3"
[dependencies.chrono]
optional = true
version = "0.4"
[dependencies.diesel]
default-features = false
features = ["with-deprecated", "unstable"]
version = "=1.4.3"
[dependencies.oci-sys]
path = "oci-sys"
[dev-dependencies]
dotenv = ">=0.8, <0.11"
num = { version = "0.1", default-features = false }
num-derive = "0.1"
[features]
chrono-time = ["chrono", "diesel/chrono"]
r2d2 = ["diesel/r2d2"]
default = ["chrono-time", "r2d2"]
[replace]
"diesel:1.4.3" = { git = "https://github.com/GiGainfosystems/diesel", rev = "700171d1e607c6675d105fdaa02753e448d216fa" }
"diesel_derives:1.4.1" = { git = "https://github.com/GiGainfosystems/diesel", rev = "700171d1e607c6675d105fdaa02753e448d216fa" }