-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (50 loc) · 2.43 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
[workspace.package]
authors = ["Virto Team <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only"
version = "0.1.0"
repository = "https://github.com/virto-network/webauthn"
[workspace.dependencies]
# WebAuthN Verifier
base64 = { package = "simple-base64", version = "0.23.2", default-features = false }
coset = { version = "0.3.0", default-features = false }
futures = { version = "0.3.31", default-features = false, features = [
"executor",
] }
log = { version = "0.4.22", default-features = false }
p256 = { version = "0.13.2", default-features = false }
passkey-authenticator = { version = "0.3.0", default-features = false, features = [
"testable",
] }
passkey-client = { version = "0.3.0", default-features = false, features = [
"testable",
] }
passkey-types = { version = "0.3.0", default-features = false, features = [
"testable",
] }
public-suffix = "0.1"
rand = "0.8.5"
sha2 = { version = "0.10.8", default-features = false }
url = { git = "https://github.com/servo/rust-url", default-features = false }
url-evil = { package = "url", version = "2.5.2", default-features = false }
# FRAME
codec = { package = "parity-scale-codec", version = "3.6.12", default-features = false, features = [
"derive",
] }
scale-info = { version = "2.11.3", default-features = false, features = [
"derive",
] }
frame-support = { git = "https://github.com/virto-network/polkadot-sdk", branch = "release-virto-stable2409", default-features = false }
frame-system = { git = "https://github.com/virto-network/polkadot-sdk", branch = "release-virto-stable2409", default-features = false }
pallet-balances = { git = "https://github.com/virto-network/polkadot-sdk", branch = "release-virto-stable2409", default-features = false }
sp-io = { git = "https://github.com/virto-network/polkadot-sdk", branch = "release-virto-stable2409", default-features = false }
sp-runtime = { git = "https://github.com/virto-network/polkadot-sdk", branch = "release-virto-stable2409", default-features = false }
# FRAME Contrib
traits-authn = { git = "https://github.com/virto-network/frame-contrib", package = "fc-traits-authn", default-features = false }
pallet-pass = { git = "https://github.com/virto-network/frame-contrib", package = "fc-pallet-pass", default-features = false }
# Local Crates
verifier = { path = "verifier", default-features = false }
pass-webauthn = { path = "pass-webauthn", default-features = false }
[workspace]
members = ["pass-webauthn", "verifier"]
resolver = "2"