You've already forked AstralRinth
forked from didirus/AstralRinth
* Move launcher working directory to standard location * Fix settings save, attempt to get better backtraces * Add environment variable for settings path
49 lines
960 B
TOML
49 lines
960 B
TOML
[package]
|
|
name = "theseus"
|
|
version = "0.1.0"
|
|
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
thiserror = "1.0"
|
|
async-trait = "0.1.51"
|
|
|
|
daedalus = "0.1.12"
|
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
json5 = "0.4.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
bytes = "1"
|
|
zip = "0.5"
|
|
zip-extensions = "0.6"
|
|
sha1 = { version = "0.6.0", features = ["std"]}
|
|
path-clean = "0.1.0"
|
|
fs_extra = "1.2.0"
|
|
dirs = "4.0"
|
|
|
|
regex = "1.5"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures = "0.3"
|
|
|
|
sys-info = "0.9.0"
|
|
|
|
log = "0.4.14"
|
|
const_format = "0.2.22"
|
|
once_cell = "1.9.0"
|
|
lazy_static = "1.4"
|
|
|
|
[dev-dependencies]
|
|
argh = "0.1.6"
|
|
pretty_assertions = "1.1.0"
|
|
|
|
[[example]]
|
|
name = "download-pack"
|
|
|
|
[features]
|