Skip to content

Commit 8394d65

Browse files
committed
cargo init
1 parent a0e8e70 commit 8394d65

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
/target
3+
**/*.rs.bk
4+
Cargo.lock

Cargo.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[package]
2+
name = "lxc"
3+
version = "0.1.0"
4+
authors = ["Sanpi <[email protected]>"]
5+
repository = "https://github.com/sanpii/lxc-rs.git"
6+
documentation = "https://docs.rs/lxc"
7+
keywords = ["lxc"]
8+
license = "MIT"
9+
categories = ["api-bindings"]
10+
description = "Linux Containers API"
11+
12+
[dependencies]
13+
bitflags = "1.0"
14+
15+
[dependencies.lxc-sys]
16+
version = "0.1"
17+
path = "./lxc-sys"
18+
19+
[badges]
20+
travis-ci = { repository = "sanpii/lxc-rs" }
21+
gitlab = { repository = "sanpi/lxc-rs" }

0 commit comments

Comments
 (0)