Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/ntfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Finck <colin@reactos.org>2021-12-16 01:41:51 +0300
committerColin Finck <colin@reactos.org>2021-12-16 01:41:51 +0300
commitad187486b7d8641248550c056bf972d847edb348 (patch)
treef70691209bdbaa6172f161b84388d6a0ec43237f
parent586d839f86eee362522b5beae51bd68af6608e79 (diff)
Add tags to Cargo.toml
-rw-r--r--Cargo.toml10
1 files changed, 8 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4fd9dc6..60ef668 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,9 +2,15 @@
name = "ntfs"
version = "0.1.0"
authors = ["Colin Finck <colin@reactos.org>"]
+description = "A low-level NTFS filesystem library"
+homepage = "https://github.com/ColinFinck/ntfs"
+repository = "https://github.com/ColinFinck/ntfs"
+documentation = "https://docs.rs/ntfs"
+readme = "README.md"
edition = "2018"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+license = "MIT OR Apache-2.0"
+keywords = ["filesystem", "nt", "ntfs", "windows"]
+categories = ["filesystem", "no-std", "os::windows-apis", "parser-implementations"]
[dependencies]
arrayvec = { version = "0.7.1", default-features = false }