diff --git a/Cargo.toml b/Cargo.toml index 42828fa..d50a5b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/BurntSushi/same-file" repository = "https://github.com/BurntSushi/same-file" readme = "README.md" keywords = ["same", "file", "equal", "inode"] -license = "Unlicense/MIT" +license = "Unlicense OR MIT" exclude = ["/.github"] edition = "2018" diff --git a/README.md b/README.md index 2c45fdf..7ff456b 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ A safe and cross platform crate to determine whether two files or directories are the same. [![Build status](https://github.com/BurntSushi/same-file/workflows/ci/badge.svg)](https://github.com/BurntSushi/same-file/actions) -[![](http://meritbadge.herokuapp.com/same-file)](https://crates.io/crates/same-file) +[![crates.io](https://img.shields.io/crates/v/same-file.svg)](https://crates.io/crates/same-file) -Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org). +Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). ### Documentation diff --git a/src/win.rs b/src/win.rs index 6924739..b7ad319 100644 --- a/src/win.rs +++ b/src/win.rs @@ -34,7 +34,7 @@ use winapi_util as winutil; // 2. LLVM has a bug where they fetch the id of a file and continue to use // it even after the handle has been closed, so that uniqueness is no // longer guaranteed (when `nFileIndex{Low,High}` are unique). -// bug report: http://lists.llvm.org/pipermail/llvm-bugs/2014-December/037218.html +// bug report: https://lists.llvm.org/pipermail/llvm-bugs/2014-December/037218.html // // All said and done, checking whether two files are the same on Windows // seems quite tricky. Moreover, even if the code is technically incorrect,