mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-16 09:28:53 +00:00
29 lines
720 B
TOML
29 lines
720 B
TOML
[package]
|
|
# Do not change the name of this crate.
|
|
name = "hub"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
# `lib` is required for non-library targets,
|
|
# such as tests and benchmarks.
|
|
# `cdylib` is for Linux, Android, Windows, and web.
|
|
# `staticlib` is for iOS and macOS.
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
rinf = "6.9.0"
|
|
prost = "0.12.3"
|
|
wasm-bindgen = "0.2.91"
|
|
tokio_with_wasm = "0.4.3"
|
|
babylonia-terminal-sdk = { path = "./../../../babylonia-terminal-sdk" }
|
|
downloader = { git = "https://github.com/ALEZ-DEV/downloader" } # version = "0.2.7",
|
|
once_cell = "1.19.0"
|
|
wincompatlib = { version = "0.7.4", features = [
|
|
"dxvk",
|
|
"wine-bundles",
|
|
"wine-proton",
|
|
"wine-fonts",
|
|
"winetricks",
|
|
] }
|