diff options
Diffstat (limited to 'vendor/snapbox/src/data.rs')
-rw-r--r-- | vendor/snapbox/src/data.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/snapbox/src/data.rs b/vendor/snapbox/src/data.rs index aa5f9b1ed..ab4432c1e 100644 --- a/vendor/snapbox/src/data.rs +++ b/vendor/snapbox/src/data.rs @@ -10,7 +10,7 @@ pub struct Data { enum DataInner { Binary(Vec<u8>), Text(String), - #[cfg(feature = "structured-data")] + #[cfg(feature = "json")] Json(serde_json::Value), } |