Skip to content

Commit

Permalink
fixup! Bump oxvg version to include serde and jsonschema
Browse files Browse the repository at this point in the history
  • Loading branch information
noahbald committed Oct 9, 2024
1 parent 228b649 commit 3bd8bad
Showing 1 changed file with 6 additions and 24 deletions.
30 changes: 6 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [
"c",
"derive",
"static-self",
"static-self-derive",
"static-self-derive"
]

[package]
Expand All @@ -16,7 +16,7 @@ version = "1.0.0-alpha.59"
description = "A CSS parser, transformer, and minifier"
license = "MPL-2.0"
edition = "2021"
keywords = ["CSS", "minifier", "Parcel"]
keywords = [ "CSS", "minifier", "Parcel" ]
repository = "https://github.com/parcel-bundler/lightningcss"

[package.metadata.docs.rs]
Expand All @@ -39,28 +39,12 @@ browserslist = ["browserslist-rs"]
bundler = ["dashmap", "sourcemap", "rayon"]
cli = ["atty", "clap", "serde_json", "browserslist", "jemallocator"]
grid = []
jsonschema = [
"schemars",
"serde",
"parcel_selectors/jsonschema",
"oxvg_path/jsonschema",
]
jsonschema = ["schemars", "serde", "parcel_selectors/jsonschema", "oxvg_path/jsonschema"]
nodejs = ["dep:serde"]
serde = [
"dep:serde",
"smallvec/serde",
"cssparser/serde",
"parcel_selectors/serde",
"oxvg_path/serde",
"into_owned",
]
serde = ["dep:serde", "smallvec/serde", "cssparser/serde", "parcel_selectors/serde", "oxvg_path/serde", "into_owned"]
sourcemap = ["parcel_sourcemap"]
visitor = []
into_owned = [
"static-self",
"static-self/smallvec",
"parcel_selectors/into_owned",
]
into_owned = ["static-self", "static-self/smallvec", "parcel_selectors/into_owned"]
substitute_variables = ["visitor", "into_owned"]

[dependencies]
Expand Down Expand Up @@ -91,9 +75,7 @@ schemars = { version = "0.8.19", features = ["smallvec"], optional = true }
static-self = { version = "0.1.0", path = "static-self", optional = true }

[target.'cfg(target_os = "macos")'.dependencies]
jemallocator = { version = "0.3.2", features = [
"disable_initial_exec_tls",
], optional = true }
jemallocator = { version = "0.3.2", features = ["disable_initial_exec_tls"], optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["custom"], default-features = false }
Expand Down

0 comments on commit 3bd8bad

Please sign in to comment.