zap-stream-app/Cargo.toml

43 lines
1.4 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-10-16 20:23:52 +01:00
[dependencies]
tokio = { version = "1.40.0", features = ["fs", "rt-multi-thread", "rt"] }
2024-10-10 20:40:25 +01:00
egui = { version = "0.29.1" }
2024-11-02 11:22:42 +00:00
nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", branch = "master" }
2024-10-10 20:40:25 +01:00
nostr-sdk = { version = "0.35.0", features = ["all-nips"] }
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
egui_inbox = "0.6.0"
bech32 = "0.11.0"
libc = "0.2.158"
2024-10-16 10:59:28 +01:00
uuid = { version = "1.11.0", features = ["v4"] }
chrono = "0.4.38"
2024-10-30 21:54:41 +00:00
anyhow = "^1.0.91"
2024-10-16 10:59:28 +01:00
async-trait = "0.1.83"
2024-10-16 20:23:52 +01:00
sha2 = "0.10.8"
2024-10-17 20:06:37 +01:00
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls-native-roots"] }
2024-10-16 20:23:52 +01:00
itertools = "0.13.0"
2024-10-22 23:03:49 +01:00
lru = "0.12.5"
resvg = { version = "0.44.0", default-features = false }
serde = { version = "1.0.214", features = ["derive"] }
serde_with = { version = "3.11.0", features = ["hex"] }
2024-11-02 11:22:42 +00:00
2024-11-11 16:16:54 +00:00
egui-video = { git = "https://github.com/v0l/egui-video.git", rev = "5e2167855822f9523aaab0fe58ec8b3d510d1996" }
2024-10-22 16:33:59 +01:00
#egui-video = { path = "../egui-video" }
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"