- Add split licensing: AGPL-3.0 for server, Apache-2.0/MIT for all other crates and SDKs (Signal-style) - Add SECURITY.md with vulnerability disclosure policy - Add CONTRIBUTING.md with build, test, and code standards - Add "not audited" security disclaimer to README - Add workspace package metadata (license, repository, keywords) - Move internal planning docs to docs/internal/ (gitignored)
31 lines
888 B
Plaintext
31 lines
888 B
Plaintext
quicproquo — Split Licensing
|
|
============================
|
|
|
|
This project uses a split license model similar to Signal:
|
|
|
|
Server (quicproquo-server)
|
|
--------------------------
|
|
Licensed under the GNU Affero General Public License v3.0 only.
|
|
See LICENSE-AGPL-3.0 for the full text.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
Libraries and SDKs (all other crates)
|
|
--------------------------------------
|
|
Licensed under either of
|
|
|
|
* Apache License, Version 2.0 (LICENSE-APACHE)
|
|
* MIT License (LICENSE-MIT)
|
|
|
|
at your option.
|
|
|
|
SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
Contribution
|
|
------------
|
|
Unless you explicitly state otherwise, any contribution intentionally
|
|
submitted for inclusion in this project by you, as defined in the
|
|
Apache-2.0 license, shall be dual licensed as above (for library crates)
|
|
or AGPL-3.0-only (for the server crate), without any additional terms or
|
|
conditions.
|