|
1 | 1 | [workspace] |
2 | | -members = [ |
3 | | - "crates/anvil", |
4 | | - "crates/anvil/core", |
5 | | - "crates/anvil/rpc", |
6 | | - "crates/anvil/server", |
7 | | - "crates/abi", |
8 | | - "crates/binder", |
9 | | - "crates/cast", |
10 | | - "crates/chisel", |
11 | | - "crates/cli", |
12 | | - "crates/cli/test-utils", |
13 | | - "crates/common", |
14 | | - "crates/config", |
15 | | - "crates/doc", |
16 | | - "crates/evm", |
17 | | - "crates/fmt", |
18 | | - "crates/forge", |
19 | | - "crates/macros", |
20 | | - "crates/macros/impl", |
21 | | - "crates/ui", |
22 | | - "crates/utils", |
23 | | -] |
| 2 | +members = ["crates/*"] |
24 | 3 | resolver = "2" |
25 | 4 |
|
| 5 | +[workspace.package] |
| 6 | +version = "0.2.0" |
| 7 | +edition = "2021" |
| 8 | +rust-version = "1.71" |
| 9 | +authors = ["Foundry Contributors"] |
| 10 | +license = "MIT OR Apache-2.0" |
| 11 | +homepage = "https://github.com/foundry-rs/foundry" |
| 12 | +repository = "https://github.com/foundry-rs/foundry" |
| 13 | +exclude = ["benches/", "tests/", "test-data/", "testdata/"] |
| 14 | + |
26 | 15 | [profile.dev] |
27 | 16 | # Disabling debug info speeds up builds a bunch, |
28 | 17 | # and we don't rely on it for debugging that much |
@@ -107,6 +96,22 @@ codegen-units = 16 |
107 | 96 | package = {} |
108 | 97 |
|
109 | 98 | [workspace.dependencies] |
| 99 | +foundry-abi = { path = "crates/abi" } |
| 100 | +anvil = { path = "crates/anvil" } |
| 101 | +foundry-binder = { path = "crates/binder" } |
| 102 | +cast = { path = "crates/cast" } |
| 103 | +chisel = { path = "crates/chisel" } |
| 104 | +foundry-cli = { path = "crates/cli" } |
| 105 | +foundry-common = { path = "crates/common" } |
| 106 | +foundry-config = { path = "crates/config" } |
| 107 | +forge-doc = { path = "crates/doc" } |
| 108 | +foundry-evm = { path = "crates/evm" } |
| 109 | +forge-fmt = { path = "crates/fmt" } |
| 110 | +forge = { path = "crates/forge" } |
| 111 | +foundry-macros = { path = "crates/macros" } |
| 112 | +ui = { path = "crates/ui" } |
| 113 | +foundry-utils = { path = "crates/utils" } |
| 114 | + |
110 | 115 | ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false } |
111 | 116 | ethers-addressbook = { git = "https://github.com/gakonst/ethers-rs", default-features = false } |
112 | 117 | ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false } |
|
0 commit comments