Skip to content

Commit

Permalink
0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
magic-akari committed Mar 12, 2024
1 parent 8b46128 commit a85158a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ resolver = "2"
license = "MIT"
readme = "README.md"
repository = "https://github.com/wasm-fmt/web_fmt"
version = "0.1.7"
version = "0.1.8"


[workspace.dependencies]
biome_fmt = { path = "crates/biome_fmt", version = "0.1.7", default-features = false }
common = { path = "crates/common", version = "0.1.7" }
json_fmt = { path = "crates/json_fmt", version = "0.1.7", default-features = false }
biome_fmt = { path = "crates/biome_fmt", version = "0.1.8", default-features = false }
common = { path = "crates/common", version = "0.1.8" }
json_fmt = { path = "crates/json_fmt", version = "0.1.8", default-features = false }

biome_formatter = { version = "0.4.0" }
biome_js_formatter = { version = "0.4.0" }
Expand Down
4 changes: 3 additions & 1 deletion crates/biome_fmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ default = ["main"]
main = ["wasm-bindgen", "serde-wasm-bindgen", "common/wasm-bindgen"]

[dependencies]
common = { workspace = true, features = ["biome_formatter", "serde"] }

biome_formatter = { workspace = true }
biome_js_formatter = { workspace = true }
biome_js_parser = { workspace = true }
biome_js_syntax = { workspace = true }
common = { workspace = true, features = ["biome_formatter", "serde"] }

serde = { workspace = true, features = ["derive"] }
serde-wasm-bindgen = { workspace = true, optional = true }
serde_json = { workspace = true, features = ["preserve_order"] }
Expand Down
3 changes: 2 additions & 1 deletion crates/json_fmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ default = ["main"]
main = ["wasm-bindgen", "serde-wasm-bindgen", "common/wasm-bindgen"]

[dependencies]
common = { workspace = true, features = ["biome_formatter", "serde"] }

biome_formatter = { workspace = true }
biome_json_formatter = { workspace = true }
biome_json_parser = { workspace = true }
biome_json_syntax = { workspace = true }
common = { workspace = true, features = ["biome_formatter", "serde"] }

serde = { workspace = true, features = ["derive"] }
serde-wasm-bindgen = { workspace = true, optional = true }
Expand Down
14 changes: 8 additions & 6 deletions crates/web_fmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,21 @@ repository.workspace = true
version.workspace = true

[dependencies]
biome_fmt = { workspace = true, default-features = false }
common = { workspace = true, features = [
"biome_formatter",
"serde",
"wasm-bindgen",
] }
json_fmt = { workspace = true, default-features = false }
malva = { version = "0.1.5", features = ["config_serde"] }

biome_fmt = { workspace = true, default-features = false }
json_fmt = { workspace = true, default-features = false }
malva = { version = "0.1.5", features = ["config_serde"] }
markup_fmt = { version = "0.6.0", features = ["config_serde"] }
serde = { workspace = true, features = ["derive"] }

serde = { workspace = true, features = ["derive"] }
serde-wasm-bindgen = { workspace = true }
serde_json = { workspace = true, features = ["preserve_order"] }
wasm-bindgen = { workspace = true }
serde_json = { workspace = true, features = ["preserve_order"] }
wasm-bindgen = { workspace = true }

[lib]
crate-type = ["cdylib", "rlib"]

0 comments on commit a85158a

Please sign in to comment.