Skip to content

Commit

Permalink
chore: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
g-plane committed Nov 30, 2024
1 parent 94b375e commit eee1136
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions crates/formatter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wat_formatter"
version = "0.0.0"
version = "0.1.0"
description = "WebAssembly Text Format formatter."
authors = ["Pig Fang <[email protected]>"]
repository = "https://github.com/g-plane/wasm-language-tools"
Expand All @@ -14,13 +14,13 @@ line-index.workspace = true
rowan.workspace = true
serde = { version = "1.0", features = ["derive"], optional = true }
tiny_pretty = "0.2"
wat_syntax = { version = "0.0", path = "../syntax" }
wat_syntax = { version = "0.1", path = "../syntax" }

[dev-dependencies]
insta.workspace = true
serde_json = "1.0"
similar-asserts.workspace = true
wat_parser = { version = "0.0", path = "../parser" }
wat_parser = { version = "0.1", path = "../parser" }

[features]
config_serde = ["serde"]
Expand Down
4 changes: 2 additions & 2 deletions crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wat_parser"
version = "0.0.0"
version = "0.1.0"
description = "WebAssembly Text Format concrete syntax tree parser."
authors = ["Pig Fang <[email protected]>"]
repository = "https://github.com/g-plane/wasm-language-tools"
Expand All @@ -12,7 +12,7 @@ exclude = ["/tests"]

[dependencies]
rowan.workspace = true
wat_syntax = { path = "../syntax", version = "0.0" }
wat_syntax = { path = "../syntax", version = "0.1" }
winnow = { version = "0.6", features = ["unstable-recover"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wat_server"
version = "0.0.0"
version = "0.1.0"
description = "WebAssembly Text Format language server."
authors = ["Pig Fang <[email protected]>"]
repository = "https://github.com/g-plane/wasm-language-tools"
Expand All @@ -18,7 +18,7 @@ serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-journald = "0.3"
wat_service = { path = "../service", version = "0.0" }
wat_service = { path = "../service", version = "0.1" }

[lints.clippy]
dbg_macro = "warn"
8 changes: 4 additions & 4 deletions crates/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wat_service"
version = "0.0.0"
version = "0.1.0"
description = "WebAssembly Text Format language service."
authors = ["Pig Fang <[email protected]>"]
repository = "https://github.com/g-plane/wasm-language-tools"
Expand All @@ -17,9 +17,9 @@ rowan.workspace = true
rustc-hash = "2.0"
salsa = "0.16"
smallvec = "1.13"
wat_formatter = { path = "../formatter", version = "0.0" }
wat_parser = { path = "../parser", version = "0.0" }
wat_syntax = { path = "../syntax", version = "0.0" }
wat_formatter = { path = "../formatter", version = "0.1" }
wat_parser = { path = "../parser", version = "0.1" }
wat_syntax = { path = "../syntax", version = "0.1" }

[dev-dependencies]
criterion.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wat_syntax"
version = "0.0.0"
version = "0.1.0"
description = "WebAssembly Text Format syntaxes."
authors = ["Pig Fang <[email protected]>"]
repository = "https://github.com/g-plane/wasm-language-tools"
Expand Down

0 comments on commit eee1136

Please sign in to comment.