From 0b2161f526b874bdc381e9d62069de1b206e5019 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Thu, 4 Jan 2024 15:10:14 -0800 Subject: [PATCH] fix: Fix build when no features. --- CHANGELOG.md | 6 ++++++ crates/schematic/Cargo.toml | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70490ac7..5c896d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +#### 🐞 Fixes + +- Fixed a build failure when all features are disabled. + ## 0.13.1 #### 🐞 Fixes diff --git a/crates/schematic/Cargo.toml b/crates/schematic/Cargo.toml index 46613432..fbf9e35d 100644 --- a/crates/schematic/Cargo.toml +++ b/crates/schematic/Cargo.toml @@ -27,7 +27,7 @@ tracing = "0.1.40" garde = { version = "0.16.3", default-features = false, optional = true, features = [ "regex", ] } -serde = { workspace = true, optional = true } +serde = { workspace = true } serde_path_to_error = { version = "0.1.15", optional = true } starbase_styles = { version = "0.1.16", optional = true } @@ -55,7 +55,6 @@ reqwest = { version = "0.11.23", default-features = false, optional = true, feat default = ["config", "url"] config = [ "dep:garde", - "dep:serde", "dep:serde_path_to_error", "dep:starbase_styles", "schematic_macros/config",