Add daedalus

This commit is contained in:
Jai A 2024-10-19 15:14:30 -07:00
parent 595d5362f6
commit 9be9658ffb
No known key found for this signature in database
GPG Key ID: 9A9F9B7250E9883C
5 changed files with 866 additions and 229 deletions

1085
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,9 @@ members = [
'./packages/app-lib', './packages/app-lib',
'./apps/app-playground', './apps/app-playground',
'./apps/app', './apps/app',
'./apps/labrinth' './apps/labrinth',
'./apps/daedalus_client',
'./packages/daedalus',
] ]
# Optimize for speed and reduce size on release builds # Optimize for speed and reduce size on release builds

View File

@ -28,7 +28,7 @@ tauri-plugin-single-instance = { version = "2.0.0-rc" }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
thiserror = "1.0" thiserror = "1.0"
futures = "0.3" futures = "0.3"
daedalus = "0.2.3" daedalus = { path = "../../packages/daedalus" }
chrono = "0.4.26" chrono = "0.4.26"
dirs = "5.0.1" dirs = "5.0.1"

View File

@ -7,7 +7,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
daedalus = { path = "../daedalus" } daedalus = { path = "../../packages/daedalus" }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
futures = "0.3.25" futures = "0.3.25"
dotenvy = "0.15.6" dotenvy = "0.15.6"

View File

@ -22,7 +22,7 @@ urlencoding = "2.1.3"
dashmap = { version = "6.0.1", features = ["serde"] } dashmap = { version = "6.0.1", features = ["serde"] }
chrono = { version = "0.4.19", features = ["serde"] } chrono = { version = "0.4.19", features = ["serde"] }
daedalus = { version = "0.2.3" } daedalus = { path = "../../packages/daedalus" }
dirs = "5.0.1" dirs = "5.0.1"
regex = "1.5" regex = "1.5"