-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from mxpv/cleanup
Remove sync code from runc shim
- Loading branch information
Showing
17 changed files
with
26 additions
and
2,148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
[package] | ||
name = "containerd-runc-shim" | ||
version = "0.1.1" | ||
authors = ["Shaobao Feng <[email protected]>", "Tianyang Zhang <[email protected]>", "The containerd Authors"] | ||
authors = [ | ||
"Shaobao Feng <[email protected]>", | ||
"Tianyang Zhang <[email protected]>", | ||
"The containerd Authors", | ||
] | ||
keywords = ["containerd", "shim", "containers"] | ||
description = "Rust implementation of containerd's runc v2 shim runtime" | ||
|
||
|
@@ -19,9 +23,6 @@ name = "containerd-shim-runc-v2-rs" | |
path = "src/main.rs" | ||
doc = false | ||
|
||
[features] | ||
async = ["containerd-shim/async", "runc/async", "tokio", "futures", "async-trait"] | ||
|
||
[dependencies] | ||
log = "0.4" | ||
nix = "0.26" | ||
|
@@ -34,9 +35,9 @@ crossbeam = "0.8.1" | |
uuid = { version = "1.0.0", features = ["v4"] } | ||
|
||
# Async dependencies | ||
async-trait = { workspace = true, optional = true } | ||
tokio = { workspace = true, features = ["full"], optional = true } | ||
futures = { workspace = true, optional = true } | ||
async-trait = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } | ||
futures = { workspace = true } | ||
|
||
containerd-shim = { path = "../shim", version = "0.4.0" } | ||
runc = { path = "../runc", version = "0.2.0" } | ||
containerd-shim = { path = "../shim", version = "0.4.0", features = ["async"] } | ||
runc = { path = "../runc", version = "0.2.0", features = ["async"] } |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.