notedeck/Cargo.toml

113 lines
3.6 KiB
TOML
Raw Normal View History

2022-11-06 05:12:17 +00:00
[package]
name = "notedeck"
2022-11-06 05:12:17 +00:00
version = "0.1.0"
2022-11-07 00:42:20 +00:00
authors = ["William Casarin <jb55@jb55.com>"]
2022-11-06 05:12:17 +00:00
edition = "2021"
default-run = "notedeck"
2022-11-30 02:42:38 +00:00
#rust-version = "1.60"
2022-11-06 05:12:17 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-11-30 02:27:43 +00:00
[lib]
crate-type = ["lib", "cdylib"]
2022-11-06 05:12:17 +00:00
[dependencies]
#egui-android = { git = "https://github.com/jb55/egui-android.git" }
egui = "0.27.2"
eframe = { version = "0.27.2", default-features = false, features = [ "glow", "wgpu", "android-native-activity" ] }
#eframe = { version = "0.27.2", default-features = false, features = [ "glow", "android-native-activity" ] }
#eframe = "0.22.0"
egui_extras = { version = "0.27.2", features = ["all_loaders"] }
2022-11-07 03:32:13 +00:00
ehttp = "0.2.0"
egui-tabs = { git = "https://github.com/damus-io/egui-tabs", rev = "75f47141aebcf876986fad00dd83a69a7bb04840" }
reqwest = { version = "0.12.4", default-features = false, features = [ "rustls-tls-native-roots" ] }
2022-11-07 03:32:13 +00:00
image = { version = "0.24", features = ["jpeg", "png", "webp"] }
poll-promise = { version = "0.3.0", features = ["tokio"] }
2022-11-07 04:54:30 +00:00
serde_derive = "1"
2022-11-30 02:27:43 +00:00
serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
tracing = "0.1.40"
#wasm-bindgen = "0.2.83"
2022-12-11 23:46:18 +00:00
enostr = { path = "enostr" }
2022-12-12 22:33:37 +00:00
serde_json = "1.0.89"
2023-07-01 18:23:41 +00:00
env_logger = "0.10.0"
puffin_egui = { version = "0.27.0", optional = true }
puffin = { version = "0.19.0", optional = true }
nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "99d8296fcba5957245ed883e2f3b1c0d1cb16397" }
#nostrdb = "0.3.3"
hex = "0.4.3"
base32 = "0.4.0"
strum = "0.26"
strum_macros = "0.26"
bitflags = "2.5.0"
egui_virtual_list = "0.3.0"
#egui_virtual_list = { path = "/home/jb55/dev/github/lucasmerlin/hello_egui/crates/egui_virtual_list" }
2022-11-30 02:27:43 +00:00
[features]
default = []
emulate_mobile = []
profiling = ["puffin", "puffin_egui", "eframe/puffin"]
2022-11-06 05:12:17 +00:00
2023-10-01 03:45:38 +00:00
[profile.small]
inherits = 'release'
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*
2022-11-06 05:12:17 +00:00
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
2022-12-12 22:33:37 +00:00
wasm-bindgen-futures = "0.4"
2022-11-06 05:12:17 +00:00
2022-12-12 01:09:44 +00:00
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.16", features = ["macros", "rt-multi-thread", "fs"] }
2022-12-12 01:09:44 +00:00
tracing-subscriber = "0.3"
[target.'cfg(target_os = "android")'.dependencies]
android_logger = "0.11.1"
android-activity = { version = "0.4", features = [ "native-activity" ] }
#winit = "0.28.6"
winit = { version = "0.29", features = [ "android-native-activity" ] }
#winit = { git="https://github.com/rust-windowing/winit.git", rev = "2a58b785fed2a3746f7c7eebce95bce67ddfd27c", features = ["android-native-activity"] }
2022-11-30 02:27:43 +00:00
[package.metadata.android]
package = "com.damus.app"
2022-11-30 02:27:43 +00:00
apk_name = "damus"
#assets = "assets"
[[package.metadata.android.uses_feature]]
name = "android.hardware.vulkan.level"
required = true
version = 1
[[package.metadata.android.uses_permission]]
name = "android.permission.WRITE_EXTERNAL_STORAGE"
max_sdk_version = 18
2022-11-30 02:27:43 +00:00
[[package.metadata.android.uses_permission]]
name = "android.permission.READ_EXTERNAL_STORAGE"
max_sdk_version = 18
2023-07-09 19:29:39 +00:00
[package.metadata.android.signing.release]
path = "damus.keystore"
keystore_password = "damuskeystore"
2022-11-30 19:23:47 +00:00
[[package.metadata.android.uses_permission]]
name = "android.permission.INTERNET"
[package.metadata.android.application]
label = "Damus"
[[bin]]
name = "notedeck"
path = "src/bin/notedeck.rs"
[[bin]]
name = "ui_preview"
path = "src/ui_preview/main.rs"