Skip to content

Commit a567ac8

Browse files
committed
fix crate publishing (and CI)
1 parent d69fbc7 commit a567ac8

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

Cargo.lock

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ k256 = { version = "0.13.4", default-features = false, features = [
146146
] }
147147
k8s-openapi = { version = "0.21.1", features = ["v1_28"] }
148148
kube = "0.88.1"
149+
linera-kywasmtime = "0.1.0"
149150
linked-hash-map = "0.5.6"
150151
log = "0.4.21"
151152
lru = "0.12.3"
@@ -327,10 +328,6 @@ default-features = false
327328
features = ["rt-tokio", "rustls"]
328329
version = "1.76.0"
329330

330-
[workspace.dependencies.kywasmtime]
331-
git = "https://github.com/linera-io/kywasmtime"
332-
rev = "480df00badbe80520d5b990855138d3638c56159"
333-
334331
[profile.release]
335332
lto = "thin"
336333
debug = true

linera-base/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ revm = []
2121
test = ["test-strategy", "proptest"]
2222
web = [
2323
"getrandom/js",
24-
"kywasmtime",
24+
"linera-kywasmtime",
2525
"rand/getrandom",
2626
"rand/std",
2727
"rand/std_rng",
@@ -50,7 +50,7 @@ getrandom = { workspace = true, optional = true }
5050
hex.workspace = true
5151
is-terminal.workspace = true
5252
k256.workspace = true
53-
kywasmtime = { workspace = true, optional = true }
53+
linera-kywasmtime = { workspace = true, optional = true }
5454
linera-witty = { workspace = true, features = ["macros"] }
5555
prometheus = { workspace = true, optional = true }
5656
proptest = { workspace = true, optional = true, features = ["alloc"] }

linera-base/src/time.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cfg_if::cfg_if! {
1010
// This must remain conditional as otherwise it pulls in JavaScript symbols
1111
// on-chain (on any Wasm target).
1212
pub use web_time::*;
13-
pub use kywasmtime as timer;
13+
pub use linera_kywasmtime as timer;
1414
} else {
1515
pub use std::time::*;
1616
pub use tokio::time as timer;

0 commit comments

Comments
 (0)