Skip to content

Commit

Permalink
Change serde_dhall to be under the metaload feature
Browse files Browse the repository at this point in the history
Previously serde_dhall was getting included as part of the default
features even tho it was only necessary for the metaload feature.
  • Loading branch information
matte1 committed Aug 12, 2024
1 parent 3eab6eb commit 7d4b42c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions anise/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pyo3-log = { workspace = true, optional = true }
url = { version = "2.5.0", optional = true }
serde = { workspace = true }
serde_derive = { workspace = true }
serde_dhall = { workspace = true }
serde_dhall = { version = "0.12", optional = true, default-features = false }
reqwest = { version = "0.12.0", optional = true, features = ["blocking"] }
platform-dirs = { version = "0.3.0", optional = true }
tabled = { workspace = true }
Expand Down Expand Up @@ -57,7 +57,7 @@ default = ["metaload"]
# Enabling this flag significantly increases compilation times due to Arrow and Polars.
spkezr_validation = []
python = ["pyo3", "pyo3-log"]
metaload = ["url", "reqwest/blocking", "platform-dirs", "regex"]
metaload = ["url", "reqwest/blocking", "platform-dirs", "regex", "serde_dhall"]
embed_ephem = ["rust-embed"]

[[bench]]
Expand Down

0 comments on commit 7d4b42c

Please sign in to comment.