-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 938 Bytes
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 938 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
36
37
38
39
[package]
name = "bc-envelope-pattern"
version = "0.14.0"
edition = "2024"
description = "Pattern matcher for Gordian Envelope"
authors = ["Blockchain Commons"]
repository = "https://github.com/BlockchainCommons/bc-envelope-pattern-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
documentation = "https://docs.rs/bc-envelope-pattern"
keywords = [
"encoding",
"cbor",
"binary",
"format",
"serialization",
] # Up to five
categories = ["data-structures", "encoding"] # https://crates.io/category_slugs
[dependencies]
bc-envelope = "^0.43.0"
known-values = "^0.15.0"
dcbor = { version = "^0.25.0", features = ["multithreaded"] }
dcbor-parse = "^0.11.0"
dcbor-pattern = "^0.11.0"
bc-components = "^0.31.0"
bc-ur = "^0.19.0"
regex = "^1.11.1"
hex = "^0.4.3"
thiserror = "^2.0"
logos = "0.15.0"
[dev-dependencies]
hex-literal = "^1.1.0"
indoc = "^2.0.0"
bc-rand = "^0.5.0"
anyhow = "^1.0.0"
bc-tags = "^0.12.0"