mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-16 01:18:50 +00:00
20 lines
484 B
TOML
Executable File
20 lines
484 B
TOML
Executable File
[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" }
|