This commit is contained in:
2025-07-26 20:18:49 +07:00
parent fab34de1ee
commit 98eda38377
200 changed files with 4198 additions and 38072 deletions

31
crates/lume/Cargo.toml Normal file
View File

@@ -0,0 +1,31 @@
[package]
name = "lume"
version.workspace = true
edition.workspace = true
publish.workspace = true
[[bin]]
name = "lume"
path = "src/main.rs"
[dependencies]
gpui.workspace = true
gpui_tokio.workspace = true
reqwest_client.workspace = true
nostr-connect.workspace = true
nostr-sdk.workspace = true
nostr.workspace = true
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true
itertools.workspace = true
dirs.workspace = true
log.workspace = true
smallvec.workspace = true
smol.workspace = true
futures.workspace = true
oneshot.workspace = true
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }

3
crates/lume/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}