-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
62 lines (51 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "~0.4.22"
dashmap = "~5.4.0"
iref = "^2.2.3"
lazy_static = "^1.4.0"
regex = "^1"
serde_json = "^1.0"
sha256 = "^1"
[dependencies.did-jwk]
git = "https://github.com/identinet/ssi.git"
version = "^0.1.1"
[dependencies.did-method-key]
git = "https://github.com/identinet/ssi.git"
version = "^0.2.1"
[dependencies.did-web]
git = "https://github.com/identinet/ssi.git"
version = "^0.2.1"
[dependencies.rocket]
features = ["json", "tls"]
version = "^0.5.1"
[dependencies.serde]
features = ["derive"]
version = "^1.0"
[dependencies.ssi]
default-features = false
features = ["w3c", "rsa", "ed25519", "http-did"]
git = "https://github.com/identinet/ssi.git"
version = "~0.7.0"
[dependencies.ssi-dids]
git = "https://github.com/identinet/ssi.git"
version = "~0.1.1"
[dependencies.ssi-json-ld]
git = "https://github.com/identinet/ssi.git"
version = "~0.2.2"
[dev-dependencies]
async-trait = "^0.1"
either = "^1.8.0"
[features]
fail-on-warnings = []
[package]
authors = ["identinet GmbH"]
categories = ["web-programming::http-server"]
description = "did-web-server is a self-sovereign identity for the web"
documentation = "https://dws.identinet.io"
edition = "2021"
homepage = "https://github.com/identinet/did-web-server"
keywords = ["ssi", "did", "http"]
name = "did-web-server"
repository = "https://github.com/identinet/did-web-server"
version = "0.4.1"