- 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)
17 lines
432 B
TOML
17 lines
432 B
TOML
[package]
|
|
name = "quicproquo-kt"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Key Transparency: append-only SHA-256 Merkle log for (username, identity_key) bindings."
|
|
license = "Apache-2.0 OR MIT"
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
sha2 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
bincode = { workspace = true }
|