From 03d292cfb7dcaed5b2890a0ebd67096e2c18f1bd Mon Sep 17 00:00:00 2001 From: Marsel Shaikhin Date: Mon, 27 Nov 2023 11:07:06 +0100 Subject: [PATCH] chore: publish v0.1 --- Cargo.lock | 9 ++++----- crates/fervid/Cargo.toml | 10 +++++----- crates/fervid_codegen/Cargo.toml | 4 ++-- crates/fervid_core/Cargo.toml | 2 +- crates/fervid_napi/Cargo.toml | 4 ++-- crates/fervid_parser/Cargo.toml | 4 ++-- crates/fervid_transform/Cargo.toml | 4 ++-- 7 files changed, 18 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9ebb6e5..30c64f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -439,7 +439,6 @@ dependencies = [ "criterion", "fervid_codegen", "fervid_core", - "fervid_css", "fervid_parser", "fervid_transform", "fxhash", @@ -454,7 +453,7 @@ dependencies = [ [[package]] name = "fervid_codegen" -version = "0.0.1" +version = "0.1.0" dependencies = [ "fervid_core", "flagset", @@ -470,7 +469,7 @@ dependencies = [ [[package]] name = "fervid_core" -version = "0.0.1" +version = "0.1.0" dependencies = [ "flagset", "fxhash", @@ -503,7 +502,7 @@ dependencies = [ [[package]] name = "fervid_parser" -version = "0.0.1" +version = "0.1.0" dependencies = [ "fervid_core", "swc_core", @@ -514,7 +513,7 @@ dependencies = [ [[package]] name = "fervid_transform" -version = "0.0.1" +version = "0.1.0" dependencies = [ "fervid_core", "fxhash", diff --git a/crates/fervid/Cargo.toml b/crates/fervid/Cargo.toml index e0563bc..1ab2d03 100644 --- a/crates/fervid/Cargo.toml +++ b/crates/fervid/Cargo.toml @@ -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 } diff --git a/crates/fervid_codegen/Cargo.toml b/crates/fervid_codegen/Cargo.toml index ea3f384..e7d6fa1 100644 --- a/crates/fervid_codegen/Cargo.toml +++ b/crates/fervid_codegen/Cargo.toml @@ -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 "] repository = "https://github.com/phoenix-ru/fervid" @@ -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 } diff --git a/crates/fervid_core/Cargo.toml b/crates/fervid_core/Cargo.toml index 1add1a5..c9555cd 100644 --- a/crates/fervid_core/Cargo.toml +++ b/crates/fervid_core/Cargo.toml @@ -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 "] repository = "https://github.com/phoenix-ru/fervid" diff --git a/crates/fervid_napi/Cargo.toml b/crates/fervid_napi/Cargo.toml index 2b6fde5..ee1d0ec 100644 --- a/crates/fervid_napi/Cargo.toml +++ b/crates/fervid_napi/Cargo.toml @@ -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" diff --git a/crates/fervid_parser/Cargo.toml b/crates/fervid_parser/Cargo.toml index 2c44f2a..9c59865 100644 --- a/crates/fervid_parser/Cargo.toml +++ b/crates/fervid_parser/Cargo.toml @@ -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 "] repository = "https://github.com/phoenix-ru/fervid" @@ -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 } diff --git a/crates/fervid_transform/Cargo.toml b/crates/fervid_transform/Cargo.toml index 9a42ab1..7410db1 100644 --- a/crates/fervid_transform/Cargo.toml +++ b/crates/fervid_transform/Cargo.toml @@ -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 "] repository = "https://github.com/phoenix-ru/fervid" @@ -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 }