Skip to content

Commit 7383e05

Browse files
authored
Merge pull request #13 from waywardmonkeys/update-licensing-info
Correct licensing info
2 parents fff973c + fb28a7c commit 7383e05

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.3.1"
44
authors = ["Chad Brokaw <cbrokaw@gmail.com>"]
55
edition = "2021"
66
description = "High performance, low level 2D path rasterization."
7-
license = "MIT OR Apache-2.0"
7+
license = "Apache-2.0 OR MIT"
88
keywords = ["path", "rasterizer", "svg"]
99
categories = ["graphics"]
1010
repository = "https://github.com/dfrg/zeno"

README.md

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,14 @@ into alpha or subpixel masks.
66

77
[![Crates.io][crates-badge]][crates-url]
88
[![Docs.rs][docs-badge]][docs-url]
9-
[![MIT licensed][mit-badge]][mit-url]
10-
[![Apache licensed][apache-badge]][apache-url]
9+
[![Apache 2.0 or MIT license.][license-badge]][license-url]
1110

1211
[crates-badge]: https://img.shields.io/crates/v/zeno.svg
1312
[crates-url]: https://crates.io/crates/zeno
1413
[docs-badge]: https://docs.rs/zeno/badge.svg
1514
[docs-url]: https://docs.rs/zeno
16-
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
17-
[mit-url]: LICENSE-MIT
18-
[apache-badge]: https://img.shields.io/badge/license-Apache--2.0-blue.svg
19-
[apache-url]: LICENSE-APACHE
15+
[license-badge]: https://img.shields.io/badge/license-Apache--2.0_OR_MIT-blue.svg
16+
[license-url]: #license
2017

2118
## Features
2219

@@ -63,4 +60,25 @@ Resulting in the following mask:
6360
![Dashed Triangle](https://muddl.com/zeno/tri_dash.png)
6461

6562
For detail on additional features and more advanced usage,
66-
see the full API [documentation](https://docs.rs/zeno).
63+
see the full API [documentation](https://docs.rs/zeno).
64+
65+
## License
66+
67+
Licensed under either of
68+
69+
- Apache License, Version 2.0
70+
([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>)
71+
- MIT license
72+
([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
73+
74+
at your option.
75+
76+
## Contribution
77+
78+
Contributions are welcome by pull request. The [Rust code of conduct] applies.
79+
80+
Unless you explicitly state otherwise, any contribution intentionally submitted
81+
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
82+
licensed as above, without any additional terms or conditions.
83+
84+
[Rust Code of Conduct]: https://www.rust-lang.org/policies/code-of-conduct

0 commit comments

Comments
 (0)