@@ -10,10 +10,6 @@ homepage = "https://docs.rs/ethers"
10
10
repository = " https://github.com/gakonst/ethers-rs"
11
11
keywords = [" ethereum" , " web3" , " celo" , " ethers" ]
12
12
13
- [package .metadata .docs .rs ]
14
- all-features = true
15
- rustdoc-args = [" --cfg" , " docsrs" ]
16
-
17
13
[dependencies ]
18
14
ethers-providers = { version = " ^1.0.0" , path = " ../ethers-providers" , default-features = false }
19
15
ethers-core = { version = " ^1.0.0" , path = " ../ethers-core" , default-features = false }
@@ -29,6 +25,19 @@ pin-project = { version = "1.0.11", default-features = false }
29
25
futures-util = { version = " ^0.3" }
30
26
hex = { version = " 0.4.3" , default-features = false , features = [" std" ] }
31
27
28
+ [dev-dependencies ]
29
+ ethers-providers = { version = " ^1.0.0" , path = " ../ethers-providers" , default-features = false , features = [
30
+ " ws" ,
31
+ ] }
32
+ ethers-signers = { version = " ^1.0.0" , path = " ../ethers-signers" }
33
+ ethers-contract-abigen = { version = " ^1.0.0" , path = " ethers-contract-abigen" }
34
+ ethers-contract-derive = { version = " ^1.0.0" , path = " ethers-contract-derive" }
35
+ ethers-core = { version = " ^1.0.0" , path = " ../ethers-core" , default-features = false , features = [
36
+ " eip712" ,
37
+ ] }
38
+ ethers-derive-eip712 = { version = " ^1.0.0" , path = " ../ethers-core/ethers-derive-eip712" }
39
+ ethers-solc = { version = " ^1.0.0" , path = " ../ethers-solc" , default-features = false }
40
+
32
41
[target .'cfg(not(target_arch = "wasm32"))' .dev-dependencies ]
33
42
tokio = { version = " 1.18" , default-features = false , features = [" macros" ] }
34
43
@@ -43,3 +52,7 @@ legacy = []
43
52
44
53
rustls = [" ethers-contract-abigen/rustls" ]
45
54
openssl = [" ethers-contract-abigen/openssl" ]
55
+
56
+ [package .metadata .docs .rs ]
57
+ all-features = true
58
+ rustdoc-args = [" --cfg" , " docsrs" ]
0 commit comments