mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
25 lines
668 B
TOML
25 lines
668 B
TOML
[package]
|
|
name = "sprout-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Core types, event verification, and filter matching for Sprout"
|
|
|
|
[features]
|
|
test-utils = []
|
|
mcp-schema = ["schemars"]
|
|
|
|
[dependencies]
|
|
nostr = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
hex = { workspace = true }
|
|
schemars = { workspace = true, optional = true }
|
|
|
|
# NO tokio, NO sqlx, NO redis, NO axum — zero I/O dependencies
|