Files
drop/libraries/native_model/tests_crate/Cargo.toml
T
Vincent Herlemont 1b3ae4f5f1 test: refactor test
2023-12-17 10:44:54 +01:00

21 lines
608 B
TOML

[package]
name = "tests_crate"
version = "0.1.0"
edition = "2021"
[workspace]
[dependencies]
native_model = { path = "../", no-default-features = true }
serde = { version = "1.0", features = ["derive"], optional = true }
bincode = { version = "2.0.0-rc.3", features = ["serde"] , optional = true }
postcard = { version = "1.0", features = ["alloc"], optional = true }
anyhow = "1.0"
[features]
default = ["bincode_1_3"]
bincode_1_3 = ["serde", "native_model/bincode_1_3"]
bincode_2_rc = ["serde", "native_model/bincode_2_rc", "bincode"]
postcard_1_0 = ["serde", "native_model/postcard_1_0", "postcard"]