34 lines
951 B
TOML
34 lines
951 B
TOML
[package]
|
|
name = "rust_lib_whitenoise"
|
|
version = "0.2.1"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.99"
|
|
chrono = { version = "0.4.40", features = ["serde"] }
|
|
flutter_rust_bridge = { version = "=2.11.1", features = ["chrono"] }
|
|
hex = "0.4"
|
|
mdk-core = { version = "0.6.0", git = "https://github.com/marmot-protocol/mdk", rev = "749976c9876b320ca0144b4e1d13310038a8595b", features = [
|
|
"mip04",
|
|
] }
|
|
nostr-sdk = { version = "0.44", features = [
|
|
"nip04",
|
|
"nip44",
|
|
"nip47",
|
|
"nip59",
|
|
] }
|
|
serde_json = "1.0.140"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.44", features = ["rt", "rt-multi-thread"] }
|
|
url = "2.5.1"
|
|
whitenoise = { version = "0.1.0", git = "https://github.com/marmot-protocol/whitenoise-rs", rev = "3367a61e04aeb10df38e389eaa08fd35e749c01e" }
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(frb_expand)'] }
|
|
|
|
[lints.clippy]
|
|
not_unsafe_ptr_arg_deref = "allow"
|