-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (55 loc) · 1.76 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
66
#################################################################
# #
# Copyright (c) 2019-2024 YottaDB LLC and/or its subsidiaries. #
# All rights reserved. #
# #
# This source code contains the intellectual property #
# of its copyright holder(s), and is made available #
# under a license. If you do not know the terms of #
# the license, please stop and do not read further. #
# #
#################################################################
[package]
name = "yottadb"
version = "2.1.0"
authors = ["YottaDB, LLC <info@yottadb.com>"]
edition = "2018"
description = "Rust wrappers for the NoSQL database YottaDB"
license = "AGPL-3.0-only"
repository = "https://gitlab.com/YottaDB/Lang/YDBRust"
homepage = "https://yottadb.com/"
documentation = "https://yottadb.gitlab.io/Lang/YDBRust/yottadb/"
readme = "README.md"
[features]
vendor = ["bindgen"]
default = ["vendor"]
[dependencies]
[profile.release]
opt-level = 3
debug = false
# The only dependencies YDBRust has are build dependencies on bindgen and pkg-config.
# These execute basically instantaneously, so there is no need to optimize them.
[profile.release.package."*"]
opt-level = 0
[build-dependencies]
pkg-config = "0.3"
[build-dependencies.bindgen]
# Note that there is a later version of bindgen available, but it generates code that uses features that are not available in Rust 1.75. We are pinning it here for now.
version = "0.68"
optional = true
default-features = false
features = ['runtime']
[dev-dependencies]
criterion = "0.3"
threadpool = "1.7"
rand = "0.8"
num_cpus = "1"
tokio = { version = "1", features = ["rt"], default-features = false }
proptest = "1.0"
once_cell = "1"
[dev-dependencies.sdl2]
version = "0.35"
features = ["gfx", "ttf"]
[[bench]]
name = "db_set"
harness = false