diff options
Diffstat (limited to 'src/tests/example_mapping/Cargo.toml')
-rw-r--r-- | src/tests/example_mapping/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tests/example_mapping/Cargo.toml b/src/tests/example_mapping/Cargo.toml new file mode 100644 index 0000000..94756ea --- /dev/null +++ b/src/tests/example_mapping/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "example_mapping" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +primrose-library = { path = "../../crates/library" } +rand = { workspace = true } + +[dev-dependencies] +criterion = { workspace = true } + +[[bench]] +name = "main" +harness = false |