- 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
963 B
TOML
31 lines
963 B
TOML
[package]
|
|
name = "quicproquo-rpc"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "QUIC RPC framework for quicproquo v2 — framing, dispatch, tower middleware"
|
|
license = "Apache-2.0 OR MIT"
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
quicproquo-proto = { path = "../quicproquo-proto" }
|
|
prost = { workspace = true }
|
|
bytes = { workspace = true }
|
|
quinn = { workspace = true }
|
|
rustls = { workspace = true }
|
|
rcgen = { workspace = true }
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
tower = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
uuid = { version = "1", features = ["v7"] }
|
|
metrics = "0.22"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
|
|
[lints]
|
|
workspace = true
|