You've already forked AstralRinth
forked from didirus/AstralRinth
* basic framework. still has errors * added functionality for main endpoints + some structuring * formatting * unused code * mimicked CLI function with wait_for process * made PR changes, added playground * cargo fmt * removed missed println * misc tests fixes * cargo fmt * added windows support * cargo fmt * all OS use dunce * restructured profile slightly; fixed mac bug * profile changes, new main.rs * fixed requested pr + canonicaliation bug * fixed regressed bug in ui * fixed regressed bugs * fixed git error * typo * ran prettier * clippy * playground clippy * ported profile loading fix * profile change for real, url println and clippy * PR changes --------- Co-authored-by: Wyatt <wyatt@modrinth.com>
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
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]
|
|
bytes = "1"
|
|
bincode = { version = "2.0.0-rc.1", features = ["serde"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.7.3"
|
|
sha1 = { version = "0.6.1", features = ["std"]}
|
|
sha2 = "0.9.9"
|
|
sled = { version = "0.34.7", features = ["compression"] }
|
|
url = "2.2"
|
|
uuid = { version = "1.1", features = ["serde", "v4"] }
|
|
zip = "0.5"
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
daedalus = { version = "0.1.16", features = ["bincode"] }
|
|
dirs = "4.0"
|
|
# TODO: possibly replace with tracing to have structured logging
|
|
log = "0.4.14"
|
|
regex = "1.5"
|
|
sys-info = "0.9.0"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
tracing-error = "0.2"
|
|
|
|
|
|
async-tungstenite = { version = "0.20.0", features = ["tokio-runtime", "tokio-native-tls"] }
|
|
futures = "0.3"
|
|
once_cell = "1.9.0"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = { version = "0.1", features = ["fs"] }
|
|
|
|
lazy_static = "1.4.0"
|
|
dunce = "1.0.3"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = "0.11.0"
|
|
|
|
[dev-dependencies]
|
|
argh = "0.1.6"
|
|
pretty_assertions = "1.1.0"
|
|
|
|
[features]
|