- Add LICENSE-MIT and LICENSE-APACHE for dual MIT / Apache-2.0 distribution - Update root LICENSE pointer, README.md, Deno workspace manifests, and Cargo.toml - Add deno.lock dependency lockfile - Format AGENTS.md system guidelines - Import task lifecycle scaffolding and historical story specifications (extract-auth-yes, setup-ts architecture, modular workspace)
25 lines
481 B
TOML
25 lines
481 B
TOML
[package]
|
|
name = "spire_ffi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
tonic = "0.11"
|
|
prost = "0.12"
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
hyper = "1.3"
|
|
hyper-util = "0.1"
|
|
tower = "0.4"
|
|
tower-service = "0.3"
|
|
prost-types = "0.12.6"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.11"
|