- 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)
14 lines
418 B
TOML
14 lines
418 B
TOML
[package]
|
|
name = "quicproquo-plugin-api"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "C-ABI vtable for quicproquo server plugins. No std dependency; usable from bare-metal plugin authors."
|
|
license = "Apache-2.0 OR MIT"
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
# No dependencies — intentionally minimal so plugin authors have zero forced transitive deps.
|
|
[dependencies]
|