File tree 7 files changed +1508
-8
lines changed
7 files changed +1508
-8
lines changed Original file line number Diff line number Diff line change @@ -10,17 +10,42 @@ repository = "https://github.com/alloy-rs/alloy-fork-db"
10
10
11
11
[lints ]
12
12
rust.unused_must_use = " deny"
13
- rust.rust_2018_idioms = " deny"
13
+ rust.rust_2018_idioms = { level = " deny" , priority = -1 }
14
14
rustdoc.all = " warn"
15
15
16
16
[lints .clippy ]
17
- all = " warn"
18
17
missing_const_for_fn = " warn"
19
18
use_self = " warn"
20
19
option_if_let_else = " warn"
21
20
22
- [metadata .docs .rs ]
21
+ [package . metadata .docs .rs ]
23
22
all-features = true
24
23
rustdoc-args = [" --cfg" , " docsrs" ]
25
24
26
25
[dependencies ]
26
+ alloy-primitives = " 0.7.3"
27
+ alloy-provider = { version = " 0.1.2" , default-features = false }
28
+ alloy-rpc-types = { version = " 0.1.2" , features = [" eth" ] }
29
+ alloy-serde = { version = " 0.1.2" , default-features = false }
30
+ alloy-transport = { version = " 0.1.2" , default-features = false }
31
+
32
+ eyre = " 0.6"
33
+ futures = " 0.3"
34
+
35
+ parking_lot = " 0.12"
36
+
37
+ revm = { version = " 10.0.0" , features = [" std" , " serde" ] }
38
+ rustc-hash = " 2.0"
39
+
40
+ serde = " 1.0"
41
+ serde_json = " 1.0"
42
+
43
+ thiserror = " 1"
44
+ tokio = { version = " 1" , features = [" rt-multi-thread" ] }
45
+ tracing = " 0.1"
46
+
47
+ url = " 2"
48
+
49
+ [dev-dependencies ]
50
+ alloy-rpc-client = { version = " 0.1.2" }
51
+ alloy-transport-http = { version = " 0.1.2" }
Original file line number Diff line number Diff line change @@ -23,9 +23,6 @@ allow = [
23
23
" ISC" ,
24
24
" Unicode-DFS-2016" ,
25
25
" Unlicense" ,
26
- " MPL-2.0" ,
27
- # https://github.com/briansmith/ring/issues/902
28
- " LicenseRef-ring" ,
29
26
]
30
27
31
28
exceptions = [
@@ -35,8 +32,7 @@ exceptions = [
35
32
{ allow = [" CC0-1.0" ], name = " secp256k1" },
36
33
{ allow = [" CC0-1.0" ], name = " secp256k1-sys" },
37
34
{ allow = [" CC0-1.0" ], name = " tiny-keccak" },
38
- { allow = [" CC0-1.0" ], name = " to_method" },
39
- { allow = [" CC0-1.0" ], name = " trezor-client" },
35
+ { allow = [" CC0-1.0" ], name = " aurora-engine-modexp" },
40
36
]
41
37
42
38
[[licenses .clarify ]]
You can’t perform that action at this time.
0 commit comments