All checks were successful
lint/clippy Checking for common mistakes and opportunities for code improvement
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
49 lines
1.6 KiB
TOML
49 lines
1.6 KiB
TOML
[package]
|
|
name = "dtmm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Lucas Schwiderski <lucas@lschwiderski.de>"]
|
|
description = "DTMM is a GUI application to install and manage mods for the game."
|
|
documentation = "https://git.sclu1034.dev/bitsquid_dt/dtmt/wiki"
|
|
repository = "https://git.sclu1034.dev/bitsquid_dt/dtmt"
|
|
homepage = "https://git.sclu1034.dev/bitsquid_dt/dtmt"
|
|
license-file = "LICENSE"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ansi-parser = { workspace = true }
|
|
async-recursion = { workspace = true }
|
|
bincode = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
clap = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
colors-transform = { workspace = true }
|
|
confy = { workspace = true }
|
|
druid = { workspace = true }
|
|
druid-widget-nursery = { workspace = true }
|
|
dtmt-shared = { workspace = true }
|
|
futures = { workspace = true }
|
|
interprocess = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
luajit2-sys = { workspace = true }
|
|
minijinja = { workspace = true }
|
|
nexusmods = { workspace = true }
|
|
oodle = { workspace = true }
|
|
open = { workspace = true }
|
|
path-slash = { workspace = true }
|
|
sdk = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_sjson = { workspace = true }
|
|
strip-ansi-escapes = { workspace = true }
|
|
time = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-error = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
usvg = { workspace = true }
|
|
zip = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
winres = "0.1.12"
|