123456789101112131415161718192021 |
- [package]
- name = "nostr"
- version = "0.1.0"
- edition = "2021"
- [workspace]
- members = [
- "crates/types",
- "crates/client"
- ]
- [dependencies]
- nostr-rs-types = { path = "crates/types" }
- nostr-rs-client = { path = "crates/client" }
- tokio = { version = "1.26.0", features = ["full"] }
- env_logger = "0.10.0"
- serde_json = "1.0.94"
- sqlx = { version = "0.6.2", features = ["sqlite", "runtime-tokio-native-tls"] }
- futures-util = "0.3.27"
- thiserror = "1.0.40"
- parking_lot = "0.12.1"
|