diff options
| author | pravic <[email protected]> | 2016-04-12 21:50:38 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-04-12 21:50:38 +0300 |
| commit | b2b7967cac34882bed6245d6ace9b846cc2a0a6b (patch) | |
| tree | 22b31cf94bb2aaa064aea66b472806a47e4f8fd4 | |
| parent | update README (diff) | |
| download | winapi-kmd-rs-b2b7967cac34882bed6245d6ace9b846cc2a0a6b.tar.xz winapi-kmd-rs-b2b7967cac34882bed6245d6ace9b846cc2a0a6b.zip | |
rename crate as winapi-kmd
| -rw-r--r-- | Cargo.toml | 8 | ||||
| -rw-r--r-- | examples/01.minimal/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/02.unload/Cargo.toml | 2 | ||||
| -rw-r--r-- | examples/03.urandom/Cargo.toml | 2 |
4 files changed, 7 insertions, 7 deletions
@@ -1,12 +1,12 @@ [package] -name = "winapi-km" +name = "winapi-kmd" version = "0.1.0" description = "Windows Kernel Mode support library." -keywords = ["windows", "ffi", "drivers", "wdk", "ddk"] +keywords = ["windows", "ffi", "drivers", "wdk", "ddk", "Four-F"] authors = ["pravic <[email protected]>"] -repository = "https://github.com/pravic/winapi-km-rs" -documentation = "http://pravic.github.io/winapi-km-rs" +repository = "https://github.com/pravic/winapi-kmd-rs" +documentation = "http://pravic.github.io/winapi-kmd-rs" readme = "README.md" license = "MIT" diff --git a/examples/01.minimal/Cargo.toml b/examples/01.minimal/Cargo.toml index f1478aa..a2177af 100644 --- a/examples/01.minimal/Cargo.toml +++ b/examples/01.minimal/Cargo.toml @@ -24,5 +24,5 @@ lto = true debug-assertions = false [dependencies] -winapi-km = { path = "../../../km", version="*" } +winapi-kmd = { path = "../../../km", version="*" } core = { path = "../../../libcore", version = "*" } diff --git a/examples/02.unload/Cargo.toml b/examples/02.unload/Cargo.toml index 69a1c49..e3d298c 100644 --- a/examples/02.unload/Cargo.toml +++ b/examples/02.unload/Cargo.toml @@ -24,5 +24,5 @@ lto = true debug-assertions = false [dependencies] -winapi-km = { path = "../../../km", version="*" } +winapi-kmd = { path = "../../../km", version="*" } core = { path = "../../../libcore", version = "*" } diff --git a/examples/03.urandom/Cargo.toml b/examples/03.urandom/Cargo.toml index a6628d1..8b45bdf 100644 --- a/examples/03.urandom/Cargo.toml +++ b/examples/03.urandom/Cargo.toml @@ -24,7 +24,7 @@ lto = true debug-assertions = false [dependencies] -winapi-km = { path = "../../../km", version="*" } +winapi-kmd = { path = "../../../km", version="*" } core = { path = "../../../libcore", version = "*" } collections = { path = "../../../libcollections" } alloc = { path = "../../../liballoc" } |