Add snapshots crate
Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
This commit is contained in:
parent
2e501d2892
commit
b342a674b1
|
|
@ -3,5 +3,6 @@ members = [
|
|||
"crates/client",
|
||||
"crates/logging",
|
||||
"crates/shim-client",
|
||||
"crates/shim"
|
||||
"crates/shim",
|
||||
"crates/snapshots"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue