diff --git a/Cargo.toml b/Cargo.toml index d405aab..9a7a2c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,7 @@ description = "Construct a memory mapping over any file object" keywords = ["unix", "mmap", "generic", "file", "fd"] version = "0.0.1" edition = "2021" +repository="https://github.com/notflan/mapped-file" license="MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index e4bb26b..29b840a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# `MemoryFile`: Map over any file object +# `MemoryFile`: Wrap memory mappings over any file-like object A safe and ergonomic `mmap()` wrapper for arbitrary file-descriptor handles.