-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 1022 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 1022 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
[package]
name = "known-values"
version = "0.15.5"
edition = "2024"
description = "Blockchain Commons Known Values."
authors = ["Blockchain Commons"]
repository = "https://github.com/BlockchainCommons/known-values-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
documentation = "https://docs.rs/known-values"
keywords = [
"encoding",
"cbor",
"binary",
"format",
"serialization",
] # Up to five
categories = ["data-structures", "encoding"] # https://crates.io/category_slugs
[features]
default = ["directory-loading"]
directory-loading = ["dep:serde", "dep:serde_json", "dep:dirs"]
[dependencies]
bc-components = { version = "^0.31.0", default-features = false }
dcbor = { version = "^0.25.0", features = ["multithreaded"] }
paste = "^1.0.12"
# Optional dependencies for directory loading
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
dirs = { version = "5.0", optional = true }
[dev-dependencies]
tempfile = "3.10"