-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also includes: Update LICENSE-MIT Update copyright line for clarity: - Alex has been making modifications since 2014 - presumably no (c)-transfer has been arranged so copyright also belongs to the other contributors to this repo. - Trifecta has also made some modifications, but these are relatively small and so I see no need to add a separate "Copyright (c) 2024 Trifecta Tech Foundation" line right now. remove authors field from cargo.toml use of this field is discouraged at this point https://rust-lang.github.io/rfcs/3052-optional-authors-field.html update license syntax Co-authored-by: Marc R. Schoolderman <[email protected]>
- Loading branch information
1 parent
5a425ed
commit bdb6e22
Showing
4 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
target | ||
Cargo.lock | ||
.cargo/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
[package] | ||
edition = "2021" | ||
name = "bzip2" | ||
version = "0.4.4" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
version = "0.5.0" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["bzip", "encoding"] | ||
repository = "https://github.com/alexcrichton/bzip2-rs" | ||
homepage = "https://github.com/alexcrichton/bzip2-rs" | ||
repository = "https://github.com/trifectatechfoundation/bzip2-rs" | ||
homepage = "https://github.com/trifectatechfoundation/bzip2-rs" | ||
documentation = "https://docs.rs/bzip2" | ||
description = """ | ||
Bindings to libbzip2 for bzip2 compression and decompression exposed as | ||
Reader/Writer streams. | ||
""" | ||
categories = ["compression", "api-bindings"] | ||
rust-version = "1.65.0" # MSRV | ||
publish = true | ||
|
||
[workspace] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters