@@ -4,19 +4,38 @@ version = "0.1.0"
44edition = " 2021"
55
66[features ]
7- cacao = [" dep:k256" , " dep:sha3" ]
7+ cacao = [
8+ " dep:k256" ,
9+ " dep:sha3" ,
10+ " dep:alloy-providers" ,
11+ " dep:alloy-transport" ,
12+ " dep:alloy-transport-http" ,
13+ " dep:alloy-rpc-types" ,
14+ " dep:alloy-json-rpc" ,
15+ " dep:alloy-json-abi" ,
16+ " dep:alloy-sol-types" ,
17+ " dep:alloy-primitives" ,
18+ ]
819
920[dependencies ]
1021bs58 = " 0.4"
1122data-encoding = " 2.3"
12- derive_more = { version = " 0.99" , default-features = false , features = [" display" , " from" , " as_ref" , " as_mut" ] }
23+ derive_more = { version = " 0.99" , default-features = false , features = [
24+ " display" ,
25+ " from" ,
26+ " as_ref" ,
27+ " as_mut" ,
28+ ] }
1329serde = { version = " 1.0" , features = [" derive" , " rc" ] }
1430serde-aux = { version = " 4.1" , default-features = false }
1531serde_json = " 1.0"
1632thiserror = " 1.0"
1733ed25519-dalek = { git = " https://github.com/dalek-cryptography/ed25519-dalek.git" , rev = " 7529d65" }
1834rand = " 0.7"
19- chrono = { version = " 0.4" , default-features = false , features = [" std" , " clock" ] }
35+ chrono = { version = " 0.4" , default-features = false , features = [
36+ " std" ,
37+ " clock" ,
38+ ] }
2039regex = " 1.7"
2140once_cell = " 1.16"
2241jsonwebtoken = " 8.1"
@@ -25,14 +44,14 @@ sha3 = { version = "0.10", optional = true }
2544sha2 = { version = " 0.10.6" }
2645reqwest = { version = " 0.11" , features = [" default-tls" ] }
2746url = " 2"
28- alloy-providers = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" }
29- alloy-transport = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" }
30- alloy-transport-http = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" }
31- alloy-rpc-types = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" }
32- alloy-json-rpc = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" }
33- alloy-json-abi = " 0.6.2"
34- alloy-sol-types = " 0.6.2"
35- alloy-primitives = " 0.6.2"
47+ alloy-providers = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" , optional = true }
48+ alloy-transport = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" , optional = true }
49+ alloy-transport-http = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" , optional = true }
50+ alloy-rpc-types = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" , optional = true }
51+ alloy-json-rpc = { git = " https://github.com/alloy-rs/alloy.git" , rev = " e6f98e1" , optional = true }
52+ alloy-json-abi = { version = " 0.6.2" , optional = true }
53+ alloy-sol-types = { version = " 0.6.2" , optional = true }
54+ alloy-primitives = { version = " 0.6.2" , optional = true }
3655
3756[dev-dependencies ]
3857tokio = { version = " 1.35.1" , features = [" test-util" , " macros" ] }
0 commit comments