-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (34 loc) · 1.1 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
[package]
name = "depo"
version = "0.6.2"
edition = "2021"
description = "Server for secure and anonymous storage and retrieval of binary objects."
authors = ["Blockchain Commons"]
keywords = ["cryptocurrency", "security", "key-management", "recovery", "server"]
repository = "https://github.com/BlockchainCommons/bc-depo-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
categories = ["cryptography", "database", "web-programming::http-server"]
documentation = "https://docs.rs/depo"
[dependencies]
dcbor = { version = "^0.15.0", features = ["multithreaded"] }
bc-ur = "^0.5.0"
bc-envelope = { version = "^0.18.0", features = ["multithreaded"] }
bc-components = "^0.13.0"
depo-api = { version = "^0.6.0", features = ["multithreaded"] }
warp = "^0.3.0"
tokio = { version = "^1.0.0", features = ["full"] }
mysql_async = "^0.32.0"
serde = { version = "^1.0.0", features = ["derive"] }
anyhow = "^1.0.0"
hex = "^0.4.3"
async-trait = "^0.1.74"
bytes = "^1.5.0"
url = "^2.4.1"
log = "^0.4.20"
env_logger = "^0.10.1"
nu-ansi-term = "^0.49.0"
[dev-dependencies]
indoc = "^2.0.4"
hex-literal = "^0.4.1"
reqwest = "^0.11.22"