-
Notifications
You must be signed in to change notification settings - Fork 80
/
Cargo.toml
105 lines (99 loc) · 2.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[workspace]
resolver = "2"
members = [
# Support Libraries
"base64urlsafedata",
"webauthn-rs-proto",
"webauthn-rs-core",
# The actually library.
"webauthn-rs",
# Authenticator interactions
"fido-hid-rs",
"webauthn-authenticator-rs",
# caBLE tunnel server
"cable-tunnel-server/backend",
"cable-tunnel-server/common",
"cable-tunnel-server/frontend",
"fido-key-manager",
# Authenticator CLI,
"authenticator-cli",
# Tutorial / Example sites.
"tutorial/server/tide",
"tutorial/server/axum",
"tutorial/server/actix_web",
"tutorial/wasm",
# Attestatation struct format
"attestation-ca",
# Fido MDS tools
"fido-mds",
"fido-mds-tool",
# Our Device Catalog
"device-catalog",
# "device-catalog-tool",
# The compat tester
"compat_tester/webauthn-rs-demo",
"compat_tester/webauthn-rs-demo-shared",
# Ssh Key Attestation
"sshkey-attest",
# RP Proxy
"webauthn-rp-proxy",
]
# Due to --cfg=web_sys_unstable_apis
exclude = ["compat_tester/webauthn-rs-demo-wasm"]
[workspace.dependencies]
# These are in release/dependency order.
base64urlsafedata = { path = "./base64urlsafedata", version = "0.5.0" }
fido-hid-rs = { path = "./fido-hid-rs", version = "0.5.0" }
webauthn-attestation-ca = { path = "./attestation-ca", version = "0.5.0" }
webauthn-rs-proto = { path = "./webauthn-rs-proto", version = "0.5.0" }
fido-mds = { path = "./fido-mds", version = "0.5.0" }
webauthn-rs-core = { path = "./webauthn-rs-core", version = "0.5.0" }
webauthn-rs = { path = "./webauthn-rs", version = "0.5.0" }
webauthn-authenticator-rs = { path = "./webauthn-authenticator-rs", version = "0.5.0" }
# Currently un-released
cable-tunnel-server-common = { path = "./cable-tunnel-server/common", version = "0.1.0" }
webauthn-rs-device-catalog = { path = "./device-catalog" }
async-std = { version = "1.6", features = ["attributes"] }
base64 = "0.21"
clap = { version = "=4.4.18", features = ["derive", "env"] }
compact_jwt = "0.2.3"
futures = "^0.3.25"
hex = "0.4.3"
http = "^0.2.9"
http-body = "=1.0.0-rc.2"
http-body-util = "=0.1.0-rc.2"
hyper = { version = "=1.0.0-rc.3", default-features = false, features = [
"http1",
] }
nom = "7.1"
peg = "0.8.1"
openssl = "^0.10.56"
rand = "0.8"
rand_chacha = "0.3.1"
serde = { version = "^1.0.141", features = ["derive"] }
serde_cbor_2 = { version = "0.12.0-dev" }
serde_json = "^1.0.79"
tide = "0.16"
thiserror = "^1.0.37"
tokio = { version = "1.22.0", features = [
"sync",
"test-util",
"macros",
"net",
"rt-multi-thread",
"time",
] }
tokio-native-tls = "^0.3.1"
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-tungstenite = { version = "^0.18.0", features = ["native-tls"] }
tracing = "^0.1.35"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"std",
"fmt",
] }
tungstenite = { version = "^0.18.0", default-features = false, features = [
"handshake",
] }
url = "2"
uuid = "^1.1.2"