commit e31ce5d879cb02f478205ffde106a42f8e684199
parent 32caaee6421c323e150667dea527606cbf4370de
Author: Ken Sedgwick <ken@bonsai.com>
Date:   Tue,  3 Dec 2024 12:18:52 -0800
android: Undo the workspace stuff because android builds don't like
Diffstat:
2 files changed, 2 insertions(+), 8 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -13,17 +13,12 @@ description = "A multiplatform nostr client"
 [lib]
 crate-type = ["lib", "cdylib"]
 
-[workspace.dependencies]
+[dependencies]
 egui = { version = "0.29.1", features = ["serde"] }
 eframe = { version = "0.29.1", default-features = false, features = [ "wgpu", "wayland", "x11", "android-native-activity" ] }
 egui_extras = { version = "0.29.1", features = ["all_loaders"] }
 nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "71154e4100775f6932ee517da4350c433ba14ec7" }
-
-[dependencies]
 #egui-android = { git = "https://github.com/jb55/egui-android.git" }
-egui = { workspace = true }
-eframe = { workspace = true }
-egui_extras = { workspace = true }
 ehttp = "0.2.0"
 egui_tabs = "0.2.0"
 egui_nav = "0.2.0"
@@ -35,7 +30,6 @@ poll-promise = { version = "0.3.0", features = ["tokio"] }
 serde_derive = "1"
 serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
 tracing = "0.1.40"
-nostrdb = { workspace = true }
 enostr = { path = "enostr" } 
 serde_json = "1.0.89"
 env_logger = "0.10.0"
diff --git a/enostr/Cargo.toml b/enostr/Cargo.toml
@@ -11,7 +11,7 @@ serde_derive = "1"
 serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
 serde_json = "1.0.89"
 nostr = { version = "0.30.0" }
-nostrdb = { workspace = true }
+nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "71154e4100775f6932ee517da4350c433ba14ec7" }
 hex = "0.4.3"
 tracing = "0.1.40"
 env_logger = "0.11.1"