-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 872 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 872 Bytes
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
[workspace]
[package]
name = "oracle"
version = "0.7.0-dev"
authors = ["Kubo Takehiro <kubo@jiubao.org>"]
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.68.0"
[package.metadata.docs.rs]
features = ["chrono", "aq_unstable"]
rustdoc-args = ["--cfg", "docsrs"]
[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.2.0" # ODPI-C 5.5.0
[target.'cfg(windows)'.dependencies]
rustversion = "1.0"
[build-dependencies]
cc = "1.0"
[dev-dependencies]
uuid = "0.8"