-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
65 lines (54 loc) · 1.53 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
61
62
63
64
65
[package]
name = "monetdb"
version = "0.2.1-alpha.1"
description = "Client library for MonetDB, a high performance SQL database for analytics"
authors = [ "Joeri van Ruth <[email protected]>" ]
keywords = [ "monetdb", "database", "sql" ]
categories = [ "database" ]
license = "MPL-2.0"
edition = "2021"
readme = "README.md"
homepage = "https://github.com/MonetDB/monetdb-rust"
repository = "https://github.com/MonetDB/monetdb-rust"
[lib]
# doctest = false
[profile.release]
# needed for 'cargo flamegraph'
#debug = true
[[test]]
name = "ci"
path = "tests/ci/mod.rs"
harness = true
[features]
default = [ "uuid" ] # doesn't yet include "rustls"
rustls = [ "dep:rustls", "dep:rustls-platform-verifier" ]
uuid = [ "dep:uuid" ]
rust_decimal = [ "dep:rust_decimal" ]
decimal-rs = [ "dep:decimal-rs" ]
[dependencies]
array-macro = "2.1.8"
atoi = "2.0.0"
bstr = "1.10.0"
claims = "0.7.1"
decimal-rs = { version="0.1.43", optional = true }
digest = "0.10.7"
enum-utils = "0.1.2"
gethostname = "0.5.0"
hex = "0.4.3"
log = "0.4.22"
memchr = "2.7.4"
num = "0.4.3"
ripemd = "0.1.3"
rust_decimal = { version="1.36.0", features = [ "std" ], optional = true }
rustls = { version="0.23.13", optional = true }
rustls-platform-verifier = { version="0.3.4", optional = true }
sha2 = "0.10.8"
thiserror = "1.0.64"
time = { version="0.3.36", features = [ "std", "local-offset" ], optional = true }
url = "2.5.2"
uuid = { version="1.10.0", optional = true }
[dev-dependencies]
anyhow = "1.0.89"
bstr = "1.10.0"
itertools = "0.13.0"
simplelog = "0.12.2"