forked from spruceid/kepler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1023 Bytes
/
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
38
39
[package]
name = "kepler"
version = "0.1.0"
authors = ["Spruce Systems, Inc."]
edition = "2018"
license = "Apache-2.0"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ipfs-embed = { git = "https://github.com/spruceid/ipfs-embed", branch = "feat/p2pcircuit-v1", default-features = false, features = ["tokio"] }
rocket = { version = "0.5.0-rc.1", features = ["json"] }
anyhow = "1.0"
didkit = "0.3"
ssi = "0.3"
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] }
nom = "6"
bs58 = "0.4"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
serde_with = "1"
hex = "0.4"
libipld = "0.12"
tokio-stream = { version = "0.1", features = ["fs"] }
cached = "0.26"
base64 = "0.13"
reqwest = { version = "0.11", features = ["json"] }
chrono = "0.4"
tracing = "0.1"
bincode = "1.3"
sled = "0.34"
async-recursion = "0.3"
libp2p = "0.39"
tracing-subscriber = "0.2"
urlencoding = "2.1"
[dev-dependencies]
tempdir = "0.3.7"