diff --git a/Cargo.lock b/Cargo.lock index b1e249460..41e96f8db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -739,6 +739,10 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "common" +version = "0.1.0" + [[package]] name = "common_fuzz" version = "0.0.0" diff --git a/Cargo.toml b/Cargo.toml index 381e43d92..b18dfa44b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ members = [ "ipld/kamt/fuzz", "testing/calibration/shared", "testing/conformance", + "testing/common_fuzz", "testing/common_fuzz/fuzz", "testing/integration", "testing/test_actors", diff --git a/testing/common_fuzz/Cargo.toml b/testing/common_fuzz/Cargo.toml new file mode 100644 index 000000000..e020b1788 --- /dev/null +++ b/testing/common_fuzz/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "common" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/testing/common_fuzz/src/main.rs b/testing/common_fuzz/src/main.rs new file mode 100644 index 000000000..84e9f2de5 --- /dev/null +++ b/testing/common_fuzz/src/main.rs @@ -0,0 +1,5 @@ +// Copyright 2021-2023 Protocol Labs +// SPDX-License-Identifier: Apache-2.0, MIT +fn main() { + println!("Hello, world!"); +}