Skip to content

Commit

Permalink
fix: fix github action
Browse files Browse the repository at this point in the history
Signed-off-by: zongz <[email protected]>
  • Loading branch information
zong-zhe committed Dec 5, 2024
1 parent 4873d71 commit 52b14fb
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1"
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-evaluator = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-loader = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-runtime = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ doc = false
cbindgen = "0.26.0"

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion cpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["staticlib"]
[dependencies]
anyhow = "1.0"
cxx = "1.0"
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }

[build-dependencies]
cxx-build = "1.0"
2 changes: 1 addition & 1 deletion dotnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ crate-type = ["cdylib"]
doc = false

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
6 changes: 3 additions & 3 deletions java/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
once_cell = "1.19.0"
lazy_static = "1.4.0"

kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.11.0-alpha.1" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.11.0-alpha.1" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.11.0-alpha.1" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
6 changes: 3 additions & 3 deletions kotlin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ serde = { version = "1", features = ["derive"] }
once_cell = "1.19.0"
lazy_static = "1.4.0"

kclvm-parser = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-parser = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-sema = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion lua/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ mlua = { version = "0.9", features = [
"module",
"macros",
], default-features = false, optional = true }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
2 changes: 1 addition & 1 deletion nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = "0.0.0"
crate-type = ["cdylib"]

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
napi-derive = "2.12.2"
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }
pyo3 = "0.20.1"
2 changes: 1 addition & 1 deletion swift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ doc = false
cbindgen = "0.26.0"

[dependencies]
kclvm-api = { git = "https://github.com/kcl-lang/kcl", version = "0.10.8" }
kclvm-api = { git = "https://github.com/kcl-lang/kcl", rev = "2aa8fea", version = "0.10.8" }

0 comments on commit 52b14fb

Please sign in to comment.