-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (23 loc) · 1.01 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
[package]
name = "gstp"
version = "0.5.0"
edition = "2021"
description = "A secure, authenticated, transport-agnostic data exchange protocol with distributed state management via Encrypted State Continuations (ESC)."
authors = ["Blockchain Commons"]
repository = "https://github.com/BlockchainCommons/gstp-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
documentation = "https://docs.rs/gstp"
keywords = ["cryptography"] # Up to five
categories = ["cryptography"] # https://crates.io/category_slugs
[dependencies]
dcbor = { version = "^0.16.0", features = ["multithreaded"] }
bc-rand = "^0.2.0"
bc-components = "^0.17.0"
bc-envelope = "^0.23.0"
bc-xid = "^0.5.0"
anyhow = "^1.0.0"
[dev-dependencies]
hex-literal = "^0.4.1"
indoc = "^2.0.0"
version-sync = "^0.9.0"