Add snapshots crate

Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
This commit is contained in:
Maksym Pavlenko 2021-12-17 10:12:50 -08:00
parent 2e501d2892
commit b342a674b1
3 changed files with 19 additions and 1 deletions

View File

@ -3,5 +3,6 @@ members = [
"crates/client",
"crates/logging",
"crates/shim-client",
"crates/shim"
"crates/shim",
"crates/snapshots"
]

View File

@ -0,0 +1,10 @@
[package]
name = "containerd-snapshots"
version = "0.1.0"
authors = ["Maksym Pavlenko <pavlenko.maksym@gmail.com>"]
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/containerd/rust-extensions"
homepage = "https://containerd.io"
[dependencies]

View File

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}