File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ forge-script.workspace = true
5050forge-sol-macro-gen.workspace = true
5151foundry-cli.workspace = true
5252foundry-debugger.workspace = true
53- foundry-wallets. workspace = true
53+ foundry-wallets = { workspace = true , optional = true }
5454
5555alloy-chains.workspace = true
5656alloy-dyn-abi.workspace = true
@@ -120,7 +120,7 @@ asm-keccak = ["alloy-primitives/asm-keccak"]
120120jemalloc = [" foundry-cli/jemalloc" ]
121121mimalloc = [" foundry-cli/mimalloc" ]
122122tracy-allocator = [" foundry-cli/tracy-allocator" ]
123- aws-kms = [" foundry-wallets/aws-kms" ]
124- gcp-kms = [" foundry-wallets/gcp-kms" ]
125- turnkey = [" foundry-wallets/turnkey" ]
123+ aws-kms = [" dep:foundry-wallets " , " foundry-wallets/aws-kms" ]
124+ gcp-kms = [" dep:foundry-wallets " , " foundry-wallets/gcp-kms" ]
125+ turnkey = [" dep:foundry-wallets " , " foundry-wallets/turnkey" ]
126126isolate-by-default = [" foundry-config/isolate-by-default" ]
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ extern crate foundry_common;
99#[ macro_use]
1010extern crate tracing;
1111
12+ // Required for optional features (aws-kms, gcp-kms, turnkey)
13+ #[ cfg( any( feature = "aws-kms" , feature = "gcp-kms" , feature = "turnkey" ) ) ]
14+ use foundry_wallets as _;
15+
1216pub mod args;
1317pub mod cmd;
1418pub mod opts;
You can’t perform that action at this time.
0 commit comments