diff options
| author | pravic <[email protected]> | 2016-04-12 16:50:35 +0300 |
|---|---|---|
| committer | pravic <[email protected]> | 2016-04-12 16:50:35 +0300 |
| commit | d85dd3317915070856726167b0dd9035c696a55e (patch) | |
| tree | 06ef296bd57672b47de7082e9dda142bc5f34621 /Cargo.toml | |
| parent | add driver examples (diff) | |
| download | winapi-kmd-rs-d85dd3317915070856726167b0dd9035c696a55e.tar.xz winapi-kmd-rs-d85dd3317915070856726167b0dd9035c696a55e.zip | |
specify repository link
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,20 +2,21 @@ name = "winapi-km" version = "0.1.0" description = "Windows Kernel Mode support library." +keywords = ["windows", "ffi", "drivers", "wdk", "ddk"] authors = ["pravic <[email protected]>"] +repository = "https://github.com/pravic/winapi-km-rs" +documentation = "http://pravic.github.io/winapi-km-rs" readme = "README.md" license = "MIT" -# libc = { version = "*", default_features = false } - [lib] name = "km" crate-type = ["rlib"] [dependencies] -core = { path= "../libcore", version="*" } alloc_system = { path="src/alloc" } +core = { path= "../libcore", version="*" } collections = { path = "../libcollections" } [profile.release] |