From e7cc330af8e674729d679832b67be63c4d828c15 Mon Sep 17 00:00:00 2001 From: oxfeeefeee Date: Fri, 8 Sep 2023 13:19:15 +0800 Subject: [PATCH] unify version number --- codegen/Cargo.toml | 6 +++--- engine/Cargo.toml | 10 +++++----- parser/Cargo.toml | 4 ++-- pmacro/Cargo.toml | 2 +- types/Cargo.toml | 4 ++-- vm/Cargo.toml | 8 ++++---- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 76f2397..8490b01 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -16,9 +16,9 @@ async = ["go-vm/async"] btree_map = ["go-parser/btree_map"] [dependencies] -go-parser = { version = "0.1.1", path = "../parser" } -go-vm = { version = "0.1.3", path = "../vm" } -go-types = { version = "0.1.2", path = "../types" } +go-parser = { version = "0.1.4", path = "../parser" } +go-vm = { version = "0.1.4", path = "../vm" } +go-types = { version = "0.1.4", path = "../types" } [dev-dependencies] time-test = "0.2.2" \ No newline at end of file diff --git a/engine/Cargo.toml b/engine/Cargo.toml index 322d598..47cb015 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -25,17 +25,17 @@ wasm = ["dep:wasm-bindgen", "dep:instant", "dep:getrandom"] futures-lite = "1.12.0" lazy_static = "1.4.0" zip = { version = "0.6.2", features = ["deflate"], default-features = false, optional = true } -borsh = { version ="~0.10", optional = true } +borsh = { version ="0.10.3", optional = true } wasm-bindgen = { version = "0.2.84", optional = true } instant = { version = "0.1", features = ["wasm-bindgen"], optional = true } getrandom = { version = "0.2", features = ["js"], optional = true } -go-parser = { version = "0.1.1", path = "../parser" } -go-vm = { version = "0.1.3", path = "../vm" } -go-types = { version = "0.1.2", path = "../types" } +go-parser = { version = "0.1.4", path = "../parser" } +go-vm = { version = "0.1.4", path = "../vm" } +go-types = { version = "0.1.4", path = "../types" } go-codegen = { version = "0.1.4", path = "../codegen" } -go-pmacro = { version = "0.1.0", path = "../pmacro" } +go-pmacro = { version = "0.1.4", path = "../pmacro" } [dev-dependencies] time-test = "0.2.2" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 0fcd37a..4ad28d0 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "go-parser" -version = "0.1.1" +version = "0.1.4" authors = ["oxfeeefeee "] edition = "2021" license = "BSD-3-Clause" @@ -15,4 +15,4 @@ btree_map = [] serde_borsh = ["dep:borsh"] [dependencies] -borsh = { version ="~0.10", optional = true } \ No newline at end of file +borsh = { version ="0.10.3", optional = true } \ No newline at end of file diff --git a/pmacro/Cargo.toml b/pmacro/Cargo.toml index d890cb7..79ba93c 100644 --- a/pmacro/Cargo.toml +++ b/pmacro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "go-pmacro" -version = "0.1.0" +version = "0.1.4" edition = "2021" license = "BSD-2-Clause " repository = "https://github.com/oxfeeefeee/goscript/" diff --git a/types/Cargo.toml b/types/Cargo.toml index b955a11..42b5588 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "go-types" -version = "0.1.2" +version = "0.1.4" authors = ["oxfeeefeee "] edition = "2021" license = "BSD-3-Clause" @@ -19,7 +19,7 @@ num-rational = "0.4" num-traits = "0.2" ordered-float = "3.0" -go-parser = { version = "0.1.1", path = "../parser" } +go-parser = { version = "0.1.4", path = "../parser" } [dev-dependencies] regex = "1" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index b7acc1b..152f772 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "go-vm" -version = "0.1.3" +version = "0.1.4" authors = ["oxfeeefeee "] edition = "2021" license = "BSD-2-Clause" @@ -22,10 +22,10 @@ async-channel = { version = "1.6.1", optional = true } async-executor = { version ="1.4.1", optional = true } futures-lite = { version ="1.12.0", optional = true } fastrand = { version ="1.9.0", optional = true } -borsh = { version ="~0.10", optional = true } +borsh = { version ="0.10.3", optional = true } -go-parser = { version = "0.1.1", path = "../parser" } -go-pmacro = { version = "0.1.0", path = "../pmacro" } +go-parser = { version = "0.1.4", path = "../parser" } +go-pmacro = { version = "0.1.4", path = "../pmacro" } [dev-dependencies] time-test = "0.2.2" \ No newline at end of file