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-04-19 18:00:33 +0300
committerColin Finck <colin@reactos.org>2021-04-20 07:53:54 +0300
commit20e0600072e8e837d9b478cc77871a43a16a446d (patch)
tree7a5f32ca17196b7a7682276d8af542ba236fde8b /Cargo.toml
Initial implementation of an NTFS filesystem crate, with access to NTFS files, resident attributes, StandardInformation and FileName structures, string and time parsing, with real filesystem tests for all of that.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..8e4da25
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = "ntfs"
+version = "0.1.0"
+authors = ["Colin Finck <colin@reactos.org>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+binread = { path = "../binread/binread", features = ["const_generics"], default-features = false }
+chrono = { version = "0.4.19", optional = true }
+bitflags = "1.2.1"
+displaydoc = { version = "0.1.7", default-features = false }
+enumn = "0.1.3"
+memoffset = "0.6.1"
+
+[features]
+default = ["std"]
+std = ["binread/std"]