Browse Source

Merge pull request #112 from rust3ds/fix/license

Fix licensing and credits
pull/114/head
Meziu 2 years ago committed by GitHub
parent
commit
02017316f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      AUTHORS.md
  2. 21
      LICENSE
  3. 33
      README.md
  4. 2
      ctru-rs/Cargo.toml
  5. 2
      ctru-sys/Cargo.toml

4
AUTHORS.md

@ -1,4 +0,0 @@ @@ -1,4 +0,0 @@
# Authors
* [Eidolon](https://github.com/HybridEidolon)
* [FenrirWolf](https://github.com/FenrirWolf)

21
LICENSE

@ -0,0 +1,21 @@ @@ -0,0 +1,21 @@
Copyright (C) Rust 3DS Project authors, 2015-2016
As with the original ctrulib, this library is licensed under zlib. This
applies to every file in the tree, unless otherwise noted.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you
must not claim that you wrote the original software. If you use
this software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.

33
README.md

@ -24,33 +24,10 @@ This repository is organized as follows: @@ -24,33 +24,10 @@ This repository is organized as follows:
(displayed when built with `-vv`) will be issued if the build script detects
a mismatch or is unable to check the installed `libctru` version.
## License
## Original version
Copyright (C) Rust 3DS Project authors, 2015-2016
See AUTHORS.md.
As with the original ctrulib, this library is licensed under zlib. This
applies to every file in the tree, unless otherwise noted.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you
must not claim that you wrote the original software. If you use
this software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
Rust is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.
See [LICENSE-APACHE](https://github.com/rust-lang/rust/blob/master/LICENSE-APACHE), [LICENSE-MIT](https://github.com/rust-lang/rust/blob/master/LICENSE-MIT), and [COPYRIGHT](https://github.com/rust-lang/rust/blob/master/COPYRIGHT) for details.
This project is based on the efforts the original authors:
* [Eidolon](https://github.com/HybridEidolon)
* [FenrirWolf](https://github.com/FenrirWolf)
The old version is archived [here](https://github.com/rust3ds/ctru-rs-old).

2
ctru-rs/Cargo.toml

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
[package]
authors = ["Ronald Kinard <furyhunter600@gmail.com>"]
authors = [ "Rust3DS Org", "Ronald Kinard <furyhunter600@gmail.com>" ]
description = "A safe wrapper around smealum's ctrulib."
license = "Zlib"
name = "ctru-rs"

2
ctru-sys/Cargo.toml

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
[package]
name = "ctru-sys"
version = "21.2.0+2.1.2-1"
authors = ["Ronald Kinard <furyhunter600@gmail.com>"]
authors = [ "Rust3DS Org", "Ronald Kinard <furyhunter600@gmail.com>" ]
license = "Zlib"
links = "ctru"
edition = "2021"

Loading…
Cancel
Save