mirror of
https://github.com/TaKO8Ki/gobang
synced 2024-11-19 09:25:39 +00:00
46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
name = "gobang"
|
|
version = "0.1.0-alpha.0"
|
|
authors = ["Takayuki Maeda <takoyaki0316@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
homepage = "https://github.com/TaKO8Ki/gobang"
|
|
repository = "https://github.com/TaKO8Ki/gobang"
|
|
readme = "README.md"
|
|
description = "A cross-platform terminal database tool written in Rust"
|
|
|
|
[workspace]
|
|
members=[
|
|
"database-tree"
|
|
]
|
|
|
|
[dependencies]
|
|
tui = { version = "0.14.0", features = ["crossterm"], default-features = false }
|
|
crossterm = "0.19"
|
|
anyhow = "1.0.38"
|
|
unicode-width = "0.1"
|
|
sqlx = { version = "0.4.1", features = ["mysql", "chrono", "runtime-tokio-rustls"] }
|
|
chrono = "0.4"
|
|
tokio = { version = "0.2.22", features = ["full"] }
|
|
futures = "0.3.5"
|
|
serde_json = "1.0"
|
|
serde = "1.0"
|
|
toml = "0.4"
|
|
regex = "1"
|
|
strum = "0.21"
|
|
strum_macros = "0.21"
|
|
database-tree = { path = "./database-tree", version = "0.1" }
|
|
easy-cast = "0.4"
|
|
copypasta = { version = "0.7.0" }
|
|
|
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
|
png = { version = "0.16.8", default-features = false, optional = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
raw-window-handle = "0.3.3"
|
|
cocoa = "0.24.0"
|
|
objc = "0.2.2"
|
|
|
|
[target.'cfg(not(any(target_os="windows", target_os="macos")))'.dependencies]
|
|
x11-dl = { version = "2", optional = true }
|