diff --git a/tests/Cargo.toml b/tests/Cargo.toml new file mode 100644 index 0000000..5d3732e --- /dev/null +++ b/tests/Cargo.toml @@ -0,0 +1,18 @@ +# https://stackoverflow.com/a/71461114/1311272 +[package] +name = "tests" +version = "0.1.0" +edition = "2021" +publish = false + +[dev-dependencies] +identified_vec = { path = "../identified_vec", features = ["id_prim", "serde"] } +identified_vec_macros = { path = "../identified_vec_macros" } +serde = "1.0.193" +serde_json = "1.0.108" +rand = "0.8.5" +maplit = "1.0.2" + +[[test]] +name = "integration_tests" +path = "tests.rs"