-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
77 lines (70 loc) · 2.51 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
[workspace]
resolver = "2"
members = ["packages/account_sdk", "packages/account-wasm"]
[workspace.package]
edition = "2021"
version = "0.1.0"
[workspace.dependencies]
account_sdk = { path = "packages/account_sdk" }
account-wasm = { path = "packages/account-wasm" }
anyhow = "1"
async-trait = "0.1.80"
base64 = "0.22"
cairo-lang-starknet = "2.4.0"
coset = { version = "0.3.4", features = ["std"] }
ecdsa = "0.16.9"
futures = "0.3"
hex = "0.4.3"
indexmap = { version = "2.2.6", features = ["serde"] }
lazy_static = "1"
once_cell = "1.19.0"
p256 = "0.13"
primitive-types = { version = "0.12", default-features = false }
getrandom = { version = "0.2", features = ["js"] }
rand = { version = "0.8", features = ["getrandom"] }
reqwest = { version = "0.11.16", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.160", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.96", default-features = false, features = [
"alloc",
"raw_value",
] }
serde-wasm-bindgen = "0.6.5"
serde_with = { version = "3.9.0", default-features = false, features = [
"alloc",
"macros",
] }
sha2 = "0.10"
thiserror = "1"
toml = "0.8"
u256-literal = "1"
url = { version = "2.3.1", default-features = false }
num-traits = "0.2.19"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4.42"
wasm-webauthn = { git = "https://github.com/cartridge-gg/wasm-webauthn", rev = "972693f" }
tokio = { version = "1", features = ["macros", "time"] }
base64urlsafedata = { git = "https://github.com/cartridge-gg/webauthn-rs", rev = "a6cea88" }
serde_cbor_2 = { version = "0.12.0-dev" }
webauthn-rs-core = { git = "https://github.com/cartridge-gg/webauthn-rs", rev = "a6cea88" }
webauthn-rs-proto = { git = "https://github.com/cartridge-gg/webauthn-rs", rev = "a6cea88" }
webauthn-authenticator-rs = { git = "https://github.com/cartridge-gg/webauthn-rs", rev = "a6cea88", features = [
"softpasskey",
] }
cainome = { git = "https://github.com/cartridge-gg/cainome", tag = "v0.4.5", features = [
"abigen-rs",
] }
cainome-cairo-serde = { git = "https://github.com/cartridge-gg/cainome", tag = "v0.4.5" }
starknet = "0.12.0"
starknet-crypto = { version = "0.7.3", features = ["pedersen_no_lookup"] }
starknet-types-core = { version = "0.1", features = ["curve", "hash"] }
# Compiler optimization when running test to prevent ‘locals exceed maximum’ error,
# where a function is using more that the maximum allowed local variables.
[profile.dev]
incremental = true
opt-level = 1
[profile.release]
lto = true
opt-level = 's'