zap-stream-app/Cargo.toml

50 lines
1.7 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" }
eframe = { version = "0.29.1", default-features = false, features = ["glow", "wgpu", "wayland", "x11", "android-native-activity"] }
nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", version = "0.3.4" }
nostr-sdk = { version = "0.35.0", features = ["all-nips"] }
egui_extras = { version = "0.29.1", features = ["all_loaders"] }
2024-09-16 20:28:54 +01:00
image = { version = "0.25", features = ["jpeg", "png", "webp"] }
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-11 16:42:05 +01:00
egui-video = { git = "https://github.com/v0l/egui-video.git", rev = "4766d939ce4d34b5a3a57b2fbe750ea10f389f39" }
2024-10-16 10:59:28 +01:00
uuid = { version = "1.11.0", features = ["v4"] }
chrono = "0.4.38"
anyhow = "1.0.89"
async-trait = "0.1.83"
2024-10-16 20:23:52 +01:00
sha2 = "0.10.8"
reqwest = { version = "0.12.7", default-features = false, features = [ "rustls-tls-native-roots" ] }
itertools = "0.13.0"
[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.14.1"
android-activity = { version = "0.6.0", features = [ "native-activity" ] }
winit = { version = "0.30.5", features = [ "android-native-activity" ] }
[package.metadata.android]
package = "stream.zap.app"
build_targets = [ "aarch64-linux-android" ]
#build_targets = [ "armv7-linux-androideabi" ]
large_heap = true
[package.metadata.android.sdk]
min_sdk_version = 20
target_sdk_version = 32
[package.metadata.android.application]
extract_native_libs = true
[package.metadata.android.application.activity]
config_changes = "orientation"