[package]
edition = "2021"
name = "dialog_final_v2_lib"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dialog library — Nostr-based encrypted notes-to-self (core Rust SDK)"
readme = "README.md"
keywords = [
"nostr",
"notes",
"encryption",
]
categories = [
"cryptography::cryptocurrencies",
"database",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/<your-org-or-user>/dialog-final-v2"
[features]
default = ["keyring"]
[lib]
name = "dialog_lib"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.directories]
version = "5"
[dependencies.keyring]
version = "3"
optional = true
[dependencies.nostr-sdk]
version = "0.37"
features = [
"ndb",
"nip44",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"sync",
]
[dev-dependencies.tokio-test]
version = "0.4"