Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1bc4f96..18ca4fd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,12 +11,14 @@ include = ["LICENSE-APACHE", "LICENSE-MIT", "README.md", "empty.rs"]
[dependencies]
serde = { version = "1.0", default-features = false, optional = true }
+mockall = { version = "0.12.1", optional = true }
[features]
-default = ["std", "serde"]
+default = ["std", "serde", "mock"]
std = ["alloc", "serde?/std"]
alloc = ["serde?/alloc"]
serde = ["dep:serde"]
+mock = ["std", "dep:mockall"]
[dev-dependencies]
macro_rules_attribute = "0.2.0"