zap-stream-app/Cargo.toml

48 lines
1.8 KiB
TOML
Raw Normal View History

2024-09-16 20:28:54 +01:00
[package]
name = "zap_stream_app"
version = "0.1.0"
edition = "2021"
2024-10-16 20:23:52 +01:00
[lib]
crate-type = ["lib", "cdylib"]
2024-09-16 20:28:54 +01:00
2024-12-17 10:45:53 +00:00
[features]
2025-01-09 14:30:44 +00:00
default = []
2024-12-17 10:45:53 +00:00
2024-10-16 20:23:52 +01:00
[dependencies]
tokio = { version = "1.40.0", features = ["fs", "rt-multi-thread", "rt"] }
egui = { version = "0.29.1", default-features = false, features = [] }
2024-09-16 20:28:54 +01:00
log = "0.4.22"
pretty_env_logger = "0.5.0"
2024-10-10 20:40:25 +01:00
bech32 = "0.11.0"
2024-10-30 21:54:41 +00:00
anyhow = "^1.0.91"
2025-01-09 14:30:44 +00:00
itertools = "0.14.0"
serde = { version = "1.0.214", features = ["derive"] }
2024-11-21 15:38:10 +00:00
directories = "5.0.1"
2024-12-17 10:45:53 +00:00
egui-video = { git = "https://github.com/v0l/egui-video.git", rev = "d2ea3b4db21eb870a207db19e4cd21c7d1d24836" }
2025-01-12 11:40:34 +00:00
egui_qr = { git = "https://git.v0l.io/Kieran/egui_qr.git", rev = "f9cf52b7eae353fa9e59ed0358151211d48824d1" }
2025-01-07 11:23:34 +00:00
# notedeck stuff
2025-01-12 11:40:34 +00:00
nostr = { version = "0.37.0", default-features = false, features = ["std", "nip49", "nip57"] }
2025-01-07 11:23:34 +00:00
nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "2111948b078b24a1659d0bd5d8570f370269c99b" }
2025-01-09 14:30:44 +00:00
notedeck-chrome = { git = "https://github.com/damus-io/notedeck", rev = "06417ff69e772f24ffd7fb2b025f879463d8c51f", package = "notedeck_chrome" }
notedeck = { git = "https://github.com/damus-io/notedeck", rev = "06417ff69e772f24ffd7fb2b025f879463d8c51f", package = "notedeck" }
enostr = { git = "https://github.com/damus-io/notedeck", rev = "06417ff69e772f24ffd7fb2b025f879463d8c51f", package = "enostr" }
2025-01-07 11:23:34 +00:00
poll-promise = "0.3.0"
ehttp = "0.5.0"
2025-01-12 11:40:34 +00:00
egui-modal = "0.5.0"
icu = "1.5.0"
icu_decimal = "1.5.0"
fixed_decimal = "0.5.6"
lnurl-rs = { version = "0.9.0", default-features = false }
2024-10-17 20:06:37 +01:00
[target.'cfg(not(target_os = "android"))'.dependencies]
eframe = { version = "0.29.1" }
2024-10-16 20:23:52 +01:00
[target.'cfg(target_os = "android")'.dependencies]
eframe = { version = "0.29.1", features = ["android-native-activity"] }
2024-10-16 20:23:52 +01:00
android_logger = "0.14.1"
android-activity = { version = "0.6.0" }
winit = { version = "0.30.5" }
android-ndk-sys = "0.2.0"