-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 1.17 KB
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
[package]
name = "aora"
version = "0.6.4"
description = "Append-only random-accessed data persistence"
authors = ["Dr. Maxim Orlovsky <orlovsky@ubideco.org>"]
keywords = ["database", "append-only-log"]
categories = ["data-structures", "database-implementations"]
repository = "https://github.com/rust-amplify/aora"
homepage = "https://github.com/rust-amplify"
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
rust-version = "1.81.0"
[dependencies]
amplify = { version = "4.8.0", default-features = false, features = ["derive", "hex", "alloc"] }
binfile = { version = "0.2.0", optional = true }
strict_encoding = { version = "2.8.1", optional = true }
indexmap = { version = "2.9.0", optional = true }
[dev-dependencies]
tempfile = "3.19.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
rand = { version = "0.8.4", optional = true }
getrandom = { version = "0.2", features = ["js"] }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"
[package.metadata.docs.rs]
features = ["all"]
[features]
default = ["file-strict"]
all = ["file-strict"]
std = ["amplify/std"]
file-strict = ["std", "strict_encoding", "indexmap", "binfile"]