diff --git a/Cargo.lock b/Cargo.lock index 71ca9bd..4141dab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,7 +139,7 @@ dependencies = [ [[package]] name = "biome_fmt" -version = "0.1.9" +version = "0.1.10" dependencies = [ "biome_formatter", "biome_js_formatter", @@ -433,7 +433,7 @@ checksum = "aaa6b4b263a5d737e9bf6b7c09b72c41a5480aec4d7219af827f6564e950b6a5" [[package]] name = "common" -version = "0.1.9" +version = "0.1.10" dependencies = [ "biome_formatter", "serde", @@ -588,7 +588,7 @@ checksum = "c3d129799327c8f80861e467c59b825ba24c277dba6ad0d71a141dc98f9e04ee" [[package]] name = "json_fmt" -version = "0.1.9" +version = "0.1.10" dependencies = [ "biome_formatter", "biome_json_formatter", @@ -1202,7 +1202,7 @@ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "web_fmt" -version = "0.1.9" +version = "0.1.10" dependencies = [ "biome_fmt", "common", diff --git a/Cargo.toml b/Cargo.toml index 179d3b5..c11848c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,13 +9,13 @@ resolver = "2" license = "MIT" readme = "README.md" repository = "https://github.com/wasm-fmt/web_fmt" - version = "0.1.9" + version = "0.1.10" [workspace.dependencies] - biome_fmt = { path = "crates/biome_fmt", version = "0.1.9", default-features = false } - common = { path = "crates/common", version = "0.1.9" } - json_fmt = { path = "crates/json_fmt", version = "0.1.9", default-features = false } + biome_fmt = { path = "crates/biome_fmt", version = "0.1.10", default-features = false } + common = { path = "crates/common", version = "0.1.10" } + json_fmt = { path = "crates/json_fmt", version = "0.1.10", default-features = false } biome_formatter = { version = "0.5.7" } biome_js_formatter = { version = "0.5.7" } @@ -25,6 +25,9 @@ resolver = "2" biome_json_parser = { version = "0.5.7" } biome_json_syntax = { version = "0.5.7" } + malva = "0.4.0" + markup_fmt = "0.8.0" + serde = "1.0" serde-wasm-bindgen = "0.6" serde_json = "1.0" diff --git a/crates/web_fmt/Cargo.toml b/crates/web_fmt/Cargo.toml index 3933fa4..4184c95 100644 --- a/crates/web_fmt/Cargo.toml +++ b/crates/web_fmt/Cargo.toml @@ -20,8 +20,8 @@ common = { workspace = true, features = [ biome_fmt = { workspace = true, default-features = false } json_fmt = { workspace = true, default-features = false } -malva = { version = "0.4.0", features = ["config_serde"] } -markup_fmt = { version = "0.8.0", features = ["config_serde"] } +malva = { workspace = true, features = ["config_serde"] } +markup_fmt = { workspace = true, features = ["config_serde"] } serde = { workspace = true, features = ["derive"] } serde-wasm-bindgen = { workspace = true }