-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
125 lines (103 loc) · 2.81 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "vsdbsled"
version = "0.34.8"
authors = ["Tyler Neely <t@jujit.su>"]
exclude = ["benchmarks", "examples", "bindings", "scripts", "experiments"]
description = "Lightweight high-performance pure-rust transactional embedded database."
homepage = "https://github.com/spacejam/sled"
documentation = "https://docs.rs/sled/"
readme = "README.md"
keywords = ["redis", "mongo", "sqlite", "lmdb", "rocksdb"]
categories = ["database-implementations", "concurrency", "data-structures", "algorithms", "caching"]
license = "MIT/Apache-2.0"
repository = "https://github.com/spacejam/sled"
resolver = "2"
[package.metadata.docs.rs]
features = ["docs"]
[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1
[profile.dev]
debug = true
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
[[test]]
name = "test_crash_recovery"
path = "tests/test_crash_recovery.rs"
harness = false
[dependencies.backtrace]
version = "0.3.61"
optional = true
[dependencies.color-backtrace]
version = "0.5.1"
optional = true
[dependencies.crc32fast]
version = "1.2.1"
[dependencies.crossbeam-epoch]
version = "0.9.8"
[dependencies.crossbeam-utils]
version = "0.8.5"
[dependencies.fxhash]
version = "0.2.1"
[dependencies.libc]
version = "0.2.101"
[dependencies.log]
version = "0.4.14"
[dependencies.parking_lot]
version = "0.12.0"
[dependencies.rio]
version = "0.9.4"
optional = true
[dependencies.zstd]
version = "0.11.1+zstd.1.5.2"
optional = true
[dev-dependencies.byteorder]
version = "1.3.4"
[dev-dependencies.env_logger]
version = "0.8.1"
[dev-dependencies.log]
version = "0.4.11"
[dev-dependencies.quickcheck]
version = "0.9.2"
[dev-dependencies.rand]
version = "0.7.3"
[dev-dependencies.rand_chacha]
version = "0.2.2"
[dev-dependencies.rand_distr]
version = "0.3.0"
[dev-dependencies.zerocopy]
version = "0.3.0"
[features]
compression = ["zstd"]
default = ["no_metrics"]
docs = []
event_log = []
failpoints = []
io_uring = ["rio"]
lock_free_delays = []
measure_allocs = []
miri_optimizations = []
mutex = []
no_inline = []
no_logs = ["log/max_level_off"]
no_metrics = []
pretty_backtrace = ["color-backtrace"]
testing = ["event_log", "lock_free_delays", "compression", "failpoints", "backtrace"]
[target."cfg(any(target_os = \"linux\", target_os = \"macos\", target_os=\"windows\"))".dependencies.fs4]
version = "0.5.4"
[badges.maintenance]
status = "actively-developed"