-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathCargo.toml
36 lines (29 loc) · 837 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
[workspace]
[package]
name = "oracle"
version = "0.7.0-dev"
authors = ["Kubo Takehiro <[email protected]>"]
repository = "https://github.com/kubo/rust-oracle"
license = "UPL-1.0/Apache-2.0"
keywords = ["oracle", "database"]
readme = "README.md"
description = "Oracle binding"
edition = "2021"
rust-version = "1.60.0"
[package.metadata.docs.rs]
features = ["chrono", "aq_unstable"]
[features]
aq_unstable = []
struct_error = [] # Don't use this at present.
[dependencies]
once_cell = "1.19.0"
paste = "1.0.5"
chrono = { version = "0.4.20", optional = true, default-features = false, features = ["clock"] }
oracle_procmacro = { version = "0.1.2", path = "./oracle_procmacro" }
odpic-sys = "=0.1.1" # ODPI-C 5.4.1
[target.'cfg(windows)'.dependencies]
rustversion = "1.0"
[build-dependencies]
cc = "1.0"
[dev-dependencies]
uuid = "0.8"