Skip to content

Commit

Permalink
chore: bump all kclvm crate versions to v0.4.5 (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
Peefy committed Feb 6, 2023
1 parent 6c172ba commit cdb5574
Show file tree
Hide file tree
Showing 21 changed files with 104 additions and 104 deletions.
36 changes: 18 additions & 18 deletions kclvm/Cargo.lock

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

26 changes: 13 additions & 13 deletions kclvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kclvm"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down Expand Up @@ -32,18 +32,18 @@ libloading = "0.7.3"
chrono = "0.4.19"
threadpool = "1.0"

kclvm-capi = {path = "./capi",version = "0.1.0"}
kclvm-ast = {path = "./ast", version = "0.1.0"}
kclvm-runner = {path = "./runner", version = "0.1.0"}
kclvm-parser = {path = "./parser", version = "0.1.0"}
kclvm-compiler = {path = "./compiler", version = "0.1.0"}
kclvm-config = {path = "./config", version = "0.1.0"}
kclvm-runtime = {path = "./runtime", version = "0.1.0"}
kclvm-sema = {path = "./sema", version = "0.1.0"}
kclvm-tools = {path = "./tools", version = "0.1.0"}
kclvm-version = {path = "./version", version = "0.1.0"}
kclvm-error = {path = "./error", version = "0.1.0"}
kclvm-query = {path = "./query", version = "0.1.0"}
kclvm-capi = {path = "./capi",version = "0.4.5"}
kclvm-ast = {path = "./ast", version = "0.4.5"}
kclvm-runner = {path = "./runner", version = "0.4.5"}
kclvm-parser = {path = "./parser", version = "0.4.5"}
kclvm-compiler = {path = "./compiler", version = "0.4.5"}
kclvm-config = {path = "./config", version = "0.4.5"}
kclvm-runtime = {path = "./runtime", version = "0.4.5"}
kclvm-sema = {path = "./sema", version = "0.4.5"}
kclvm-tools = {path = "./tools", version = "0.4.5"}
kclvm-version = {path = "./version", version = "0.4.5"}
kclvm-error = {path = "./error", version = "0.4.5"}
kclvm-query = {path = "./query", version = "0.4.5"}

[profile.release]
rpath = true
Expand Down
6 changes: 3 additions & 3 deletions kclvm/ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kclvm-ast"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -10,7 +10,7 @@ rustc_span = { path = "../3rdparty/rustc_span" }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"

kclvm-span = {path = "../span", version = "0.1.0"}
kclvm-span = {path = "../span", version = "0.4.5"}

[dev-dependencies]
kclvm-parser = {path = "../parser", version = "0.1.0"}
kclvm-parser = {path = "../parser", version = "0.4.5"}
8 changes: 4 additions & 4 deletions kclvm/ast_pretty/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "kclvm-ast-pretty"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
kclvm-parser = {path = "../parser", version = "0.1.0"}
kclvm-error = {path = "../error", version = "0.1.0"}
kclvm-ast = {path = "../ast", version = "0.1.0"}
kclvm-parser = {path = "../parser", version = "0.4.5"}
kclvm-error = {path = "../error", version = "0.4.5"}
kclvm-ast = {path = "../ast", version = "0.4.5"}
indexmap = "1.0"
fancy-regex = "0.7.1"
pretty_assertions = "1.3.0"
14 changes: 7 additions & 7 deletions kclvm/capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kclvm-capi"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

[dependencies]
Expand All @@ -10,12 +10,12 @@ serde_yaml = "0.9.2"
protobuf-json-mapping = "3.1.0"
serde = { version = "1", features = ["derive"] }

kclvm-runner = {path = "../runner", version = "0.1.0"}
kclvm-parser = {path = "../parser", version = "0.1.0"}
kclvm-ast = {path = "../ast", version = "0.1.0"}
kclvm-runtime = {path = "../runtime", version = "0.1.0"}
kclvm-tools = {path = "../tools", version = "0.1.0" }
kclvm-query = {path = "../query", version = "0.1.0"}
kclvm-runner = {path = "../runner", version = "0.4.5"}
kclvm-parser = {path = "../parser", version = "0.4.5"}
kclvm-ast = {path = "../ast", version = "0.4.5"}
kclvm-runtime = {path = "../runtime", version = "0.4.5"}
kclvm-tools = {path = "../tools", version = "0.4.5" }
kclvm-query = {path = "../query", version = "0.4.5"}

[dev-dependencies]
criterion = "0.3"
Expand Down
10 changes: 5 additions & 5 deletions kclvm/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kclvm-compiler"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -16,7 +16,7 @@ bitflags = "1.2.1"
once_cell = "1.5.2"
fancy-regex = "0.7.1"
unicode_names2 = "0.4"
kclvm-ast = {path = "../ast", version = "0.1.0"}
kclvm-sema = {path = "../sema", version = "0.1.0"}
kclvm-runtime = {path = "../runtime", version = "0.1.0"}
kclvm-error = {path = "../error", version = "0.1.0"}
kclvm-ast = {path = "../ast", version = "0.4.5"}
kclvm-sema = {path = "../sema", version = "0.4.5"}
kclvm-runtime = {path = "../runtime", version = "0.4.5"}
kclvm-error = {path = "../error", version = "0.4.5"}
4 changes: 2 additions & 2 deletions kclvm/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kclvm-config"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -18,4 +18,4 @@ glob = "0.3.0"
fslock = "0.2.1"
pathdiff = "0.2.1"

kclvm-version = {path = "../version", version = "0.1.0"}
kclvm-version = {path = "../version", version = "0.4.5"}
6 changes: 3 additions & 3 deletions kclvm/error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "kclvm-error"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustc_span = { path = "../3rdparty/rustc_span" }
kclvm-span = {path = "../span", version = "0.1.0"}
kclvm-runtime = {path = "../runtime", version = "0.1.0"}
kclvm-span = {path = "../span", version = "0.4.5"}
kclvm-runtime = {path = "../runtime", version = "0.4.5"}

tracing = "0.1"
atty = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions kclvm/lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "kclvm-lexer"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustc_lexer = "0.1.0"
unic-emoji-char = "0.9.0"
kclvm-error = {path = "../error", version = "0.1.0"}
kclvm-error = {path = "../error", version = "0.4.5"}

[dev-dependencies]
expect-test = "1.0"
2 changes: 1 addition & 1 deletion kclvm/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kclvm-macros"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
16 changes: 8 additions & 8 deletions kclvm/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kclvm-parser"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -19,13 +19,13 @@ unicode_names2 = "0.4"
bstr = "0.2.16"
num-bigint = "0.4"

kclvm-lexer = {path = "../lexer", version = "0.1.0"}
kclvm-ast = {path = "../ast", version = "0.1.0"}
kclvm-span = {path = "../span", version = "0.1.0"}
kclvm-error = {path = "../error", version = "0.1.0"}
kclvm-config = {path = "../config", version = "0.1.0"}
kclvm-sema = {path = "../sema", version = "0.1.0"}
kclvm-runtime = {path = "../runtime", version = "0.1.0"}
kclvm-lexer = {path = "../lexer", version = "0.4.5"}
kclvm-ast = {path = "../ast", version = "0.4.5"}
kclvm-span = {path = "../span", version = "0.4.5"}
kclvm-error = {path = "../error", version = "0.4.5"}
kclvm-config = {path = "../config", version = "0.4.5"}
kclvm-sema = {path = "../sema", version = "0.4.5"}
kclvm-runtime = {path = "../runtime", version = "0.4.5"}


[dev-dependencies]
Expand Down
12 changes: 6 additions & 6 deletions kclvm/query/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "kclvm-query"
version = "0.1.0"
version = "0.4.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
kclvm-ast = {path = "../ast", version = "0.1.0"}
kclvm-ast-pretty = {path = "../ast_pretty", version = "0.1.0"}
kclvm-parser = {path = "../parser", version = "0.1.0"}
kclvm-sema = {path = "../sema", version = "0.1.0"}
kclvm-error = {path = "../error", version = "0.1.0"}
kclvm-ast = {path = "../ast", version = "0.4.5"}
kclvm-ast-pretty = {path = "../ast_pretty", version = "0.4.5"}
kclvm-parser = {path = "../parser", version = "0.4.5"}
kclvm-sema = {path = "../sema", version = "0.4.5"}
kclvm-error = {path = "../error", version = "0.4.5"}

[dev-dependencies]
pretty_assertions = "1.2.1"

0 comments on commit cdb5574

Please sign in to comment.