Skip to content

Commit

Permalink
chore: publish v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenix-ru committed Nov 27, 2023
1 parent 6d5f32d commit 03d292c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 19 deletions.
9 changes: 4 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions crates/fervid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ dbg_print = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fervid_codegen = { path="../fervid_codegen", version = "0.0.1" }
fervid_core = { path="../fervid_core", version = "0.0.1" }
fervid_css = { path="../fervid_css", version = "0.0.1" }
fervid_parser = { path="../fervid_parser", version = "0.0.1" }
fervid_transform = { path="../fervid_transform", version = "0.0.1" }
fervid_codegen = { path="../fervid_codegen", version = "0.1" }
fervid_core = { path="../fervid_core", version = "0.1" }
# fervid_css = { path="../fervid_css", version = "0.0.1" }
fervid_parser = { path="../fervid_parser", version = "0.1" }
fervid_transform = { path="../fervid_transform", version = "0.1" }
nom = "7"
regex = "1"
phf = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/fervid_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fervid_codegen"
description = "EcmaScript code generation for the fervid crate"
version = "0.0.1"
version = "0.1.0"
edition = "2021"
authors = ["Marsel Shaikhin <[email protected]>"]
repository = "https://github.com/phoenix-ru/fervid"
Expand All @@ -10,7 +10,7 @@ license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fervid_core = { path="../fervid_core", version = "0.0.1" }
fervid_core = { path="../fervid_core", version = "0.1" }
lazy_static = { workspace = true }
swc_core = { workspace = true , features = ["ecma_ast"] }
swc_ecma_codegen = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/fervid_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fervid_core"
description = "The core structures and utilities of fervid"
version = "0.0.1"
version = "0.1.0"
edition = "2021"
authors = ["Marsel Shaikhin <[email protected]>"]
repository = "https://github.com/phoenix-ru/fervid"
Expand Down
4 changes: 2 additions & 2 deletions crates/fervid_napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ mimalloc-rust = { version = "0.2", features = ["local-dynamic-tls"] }

[dependencies]
fervid = { path = "../fervid", version = "0.0.3" }
fervid_codegen = { path = "../fervid_codegen", version = "0.0.1" }
fervid_transform = { path = "../fervid_transform", version = "0.0.1" }
fervid_codegen = { path = "../fervid_codegen", version = "0.1" }
fervid_transform = { path = "../fervid_transform", version = "0.1" }

napi = "2"
napi-derive = "2"
Expand Down
4 changes: 2 additions & 2 deletions crates/fervid_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fervid_parser"
description = "Vue SFC parser for the fervid crate"
version = "0.0.1"
version = "0.1.0"
edition = "2021"
authors = ["Marsel Shaikhin <[email protected]>"]
repository = "https://github.com/phoenix-ru/fervid"
Expand All @@ -10,7 +10,7 @@ license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fervid_core = { path = "../fervid_core" }
fervid_core = { path = "../fervid_core", version = "0.1" }
swc_core = { workspace = true , features = ["common", "ecma_ast"] }
swc_ecma_parser = { workspace = true }
swc_html_ast = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/fervid_transform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fervid_transform"
description = "Transformations for the fervid crate"
version = "0.0.1"
version = "0.1.0"
edition = "2021"
authors = ["Marsel Shaikhin <[email protected]>"]
repository = "https://github.com/phoenix-ru/fervid"
Expand All @@ -10,7 +10,7 @@ license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fervid_core = { path="../fervid_core", version = "0.0.1" }
fervid_core = { path="../fervid_core", version = "0.1" }
fxhash = { workspace = true }
lazy_static = { workspace = true }
phf = { workspace = true }
Expand Down

0 comments on commit 03d292c

Please sign in to comment.