Skip to content

Commit

Permalink
update cargo
Browse files Browse the repository at this point in the history
Signed-off-by: jiaxiao zhou <[email protected]>
  • Loading branch information
Mossaka committed May 16, 2024
1 parent 739fd4c commit 4d578ab
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 82 deletions.
94 changes: 15 additions & 79 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ homepage = "https://github.com/containerd/runwasi"
anyhow = "1.0"
cap-std = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
containerd-shim = { path = "../rust-extensions-fork/crates/shim" }
containerd-shim-wasm = { path = "crates/containerd-shim-wasm" }
containerd-shim = "0.7.1"
containerd-shim-wasm = { path = "crates/containerd-shim-wasm", version = "0.5.0" }
containerd-shim-wasm-test-modules = { path = "crates/containerd-shim-wasm-test-modules", version = "0.4.0"}
oci-tar-builder = { path = "crates/oci-tar-builder", version = "0.4.0" }
crossbeam = { version = "0.8.4", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/containerd-shim-wasm/src/sandbox/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::sync::Arc;
use containerd_shim::{parse, run, Config};
use opentelemetry::global::{set_text_map_propagator, shutdown_tracer_provider};

Check failure on line 6 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / lint on ubuntu-latest

failed to resolve: use of undeclared crate or module `opentelemetry`

Check failure on line 6 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / wasmedge / lint on ubuntu-latest

failed to resolve: use of undeclared crate or module `opentelemetry`

Check failure on line 6 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for windows

failed to resolve: use of undeclared crate or module `opentelemetry`

Check failure on line 6 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-gnu

failed to resolve: use of undeclared crate or module `opentelemetry`

Check failure on line 6 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-musl

failed to resolve: use of undeclared crate or module `opentelemetry`

Check failure on line 6 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for aarch64-linux-gnu

failed to resolve: use of undeclared crate or module `opentelemetry`
use opentelemetry_sdk::propagation::TraceContextPropagator;

Check failure on line 7 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / lint on ubuntu-latest

failed to resolve: use of undeclared crate or module `opentelemetry_sdk`

Check failure on line 7 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / wasmedge / lint on ubuntu-latest

failed to resolve: use of undeclared crate or module `opentelemetry_sdk`

Check failure on line 7 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for windows

failed to resolve: use of undeclared crate or module `opentelemetry_sdk`

Check failure on line 7 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-gnu

failed to resolve: use of undeclared crate or module `opentelemetry_sdk`

Check failure on line 7 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-musl

failed to resolve: use of undeclared crate or module `opentelemetry_sdk`

Check failure on line 7 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for aarch64-linux-gnu

failed to resolve: use of undeclared crate or module `opentelemetry_sdk`
use tracing::{instrument, Span};
use tracing::instrument;
use tracing_subscriber::layer::SubscriberExt;

Check failure on line 9 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / lint on ubuntu-latest

failed to resolve: use of undeclared crate or module `tracing_subscriber`

Check failure on line 9 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / wasmedge / lint on ubuntu-latest

failed to resolve: use of undeclared crate or module `tracing_subscriber`

Check failure on line 9 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for windows

failed to resolve: use of undeclared crate or module `tracing_subscriber`

Check failure on line 9 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-gnu

failed to resolve: use of undeclared crate or module `tracing_subscriber`

Check failure on line 9 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-musl

failed to resolve: use of undeclared crate or module `tracing_subscriber`

Check failure on line 9 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for aarch64-linux-gnu

failed to resolve: use of undeclared crate or module `tracing_subscriber`
use tracing_subscriber::{EnvFilter, Registry};

Check failure on line 10 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / lint on ubuntu-latest

unresolved import `tracing_subscriber`

Check failure on line 10 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / wasmedge / lint on ubuntu-latest

unresolved import `tracing_subscriber`

Check failure on line 10 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for windows

unresolved import `tracing_subscriber`

Check failure on line 10 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-gnu

unresolved import `tracing_subscriber`

Check failure on line 10 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for x86_64-linux-musl

unresolved import `tracing_subscriber`

Check failure on line 10 in crates/containerd-shim-wasm/src/sandbox/cli.rs

View workflow job for this annotation

GitHub Actions / common / build for aarch64-linux-gnu

unresolved import `tracing_subscriber`
use ttrpc::Server;
Expand Down

0 comments on commit 4d578ab

Please sign in to comment.