forked from kubo/rust-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 816 Bytes
/
Cargo.toml
File metadata and controls
36 lines (29 loc) · 816 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
[workspace]
[package]
name = "oracle"
version = "0.6.2"
authors = ["Kubo Takehiro <kubo@jiubao.org>"]
build = "build.rs"
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" }
[target.'cfg(windows)'.dependencies]
rustversion = "1.0"
[build-dependencies]
cc = "1.0"
[dev-dependencies]
uuid = "0.8"