mirror of
https://github.com/TaKO8Ki/gobang
synced 2024-11-03 15:40:19 +00:00
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "gobang"
|
|
version = "0.1.0-alpha.2"
|
|
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 TUI database management tool written in Rust"
|
|
exclude = ["resources/"]
|
|
|
|
[workspace]
|
|
members=[
|
|
"database-tree"
|
|
]
|
|
|
|
[dependencies]
|
|
tui = { version = "0.15.0", features = ["crossterm"], default-features = false }
|
|
crossterm = "0.20"
|
|
anyhow = "1.0.38"
|
|
unicode-width = "0.1"
|
|
sqlx = { version = "0.5.6", features = ["mysql", "postgres", "sqlite", "chrono", "runtime-tokio-rustls", "decimal", "json"], default-features = false }
|
|
chrono = "0.4"
|
|
tokio = { version = "1.11.0", features = ["full"] }
|
|
futures = "0.3.5"
|
|
serde_json = "1.0"
|
|
serde = "1.0"
|
|
toml = "0.4"
|
|
strum = "0.21"
|
|
strum_macros = "0.21"
|
|
database-tree = { path = "./database-tree", version = "0.1.0-alpha.2" }
|
|
easy-cast = "0.4"
|
|
async-trait = "0.1.50"
|
|
itertools = "0.10.0"
|
|
rust_decimal = "1.15"
|
|
dirs-next = "2.0"
|
|
clap = "2.33.3"
|
|
structopt = "0.3.22"
|
|
|
|
[target.'cfg(all(target_family="unix",not(target_os="macos")))'.dependencies]
|
|
which = "4.1"
|