Since I now found a way to obtain a version of the Oodle library compiled for Linux, I don't need to bother with Wine anymore, and can instead load the library directly. This removes the need for the extra utility completely. I still have to load the library at runtime, though, as Rust only supports static linking, and I probably don't have a lincense to do that with Oodle.
28 lines
865 B
TOML
28 lines
865 B
TOML
[package]
|
|
name = "dtmt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0.15", features = ["color", "derive", "std", "cargo", "unicode"] }
|
|
color-eyre = "0.6.2"
|
|
csv-async = { version = "1.2.4", features = ["tokio", "serde"] }
|
|
futures = "0.3.25"
|
|
futures-util = "0.3.24"
|
|
glob = "0.3.0"
|
|
libloading = "0.7.4"
|
|
nanorand = "0.7.0"
|
|
pin-project-lite = "0.2.9"
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
tokio = { version = "1.21.2", features = ["rt-multi-thread", "fs", "process", "macros", "tracing", "io-util", "io-std"] }
|
|
tokio-stream = { version = "0.1.11", features = ["fs", "io-util"] }
|
|
tracing = { version = "0.1.37", features = ["async-await"] }
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
lto = true
|