-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try convert it into a workspace (remove the fuzz-workspace level). wo…
…n't work
- Loading branch information
Showing
9 changed files
with
111 additions
and
1,123 deletions.
There are no files selected for viewing
633 changes: 30 additions & 603 deletions
633
...z-workspace/debug_logging/fuzz/Cargo.lock → soroban-fuzz-host/Cargo.lock
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
[package] | ||
name = "soroban-fuzz-host" | ||
version.workspace = true | ||
version = "0.0.0" | ||
description = "Collection of fuzzing targets for soroban host, do not publish" | ||
edition = "2021" | ||
publish = false | ||
rust-version = "1.71" | ||
|
||
[features] | ||
next = [] | ||
[workspace] | ||
members = [ | ||
"debug_logging", | ||
] | ||
|
||
[profile.release] | ||
debug = 1 | ||
|
||
[workspace.dependencies] | ||
soroban-env-common ={ path = "../soroban-env-common"} | ||
soroban-env-host ={ path = "../soroban-env-host"} | ||
soroban-synth-wasm ={ path = "../soroban-synth-wasm"} | ||
arbitrary = { version = "1.3.0", features = ["derive"] } |
10 changes: 3 additions & 7 deletions
10
...t/fuzz-workspace/debug_logging/Cargo.toml → soroban-fuzz-host/debug_logging/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
[package] | ||
name = "fuzz_debug_logging" | ||
name = "debug_logging" | ||
version = "0.0.0" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
publish = false | ||
rust-version = "1.65" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
doctest = false | ||
|
||
[dependencies] | ||
soroban-sdk = { workspace = true, features = ["testutils"]} | ||
soroban-env-common = { workspace = true } | ||
soroban-env-host = { workspace = true, features = ["next", "testutils"] } | ||
soroban-env-host = { workspace = true, features = ["testutils"] } | ||
soroban-synth-wasm = { workspace = true } | ||
|
||
[features] | ||
next = ["soroban-env-common/next"] | ||
arbitrary ={ workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Oops, something went wrong.