2021-06-12 04:43:25 +00:00
|
|
|
[package]
|
2021-06-12 05:18:24 +00:00
|
|
|
name = "gobang"
|
2021-09-15 11:14:32 +00:00
|
|
|
version = "0.1.0-alpha.5"
|
2021-06-12 04:43:25 +00:00
|
|
|
authors = ["Takayuki Maeda <takoyaki0316@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-06-22 19:50:20 +00:00
|
|
|
license = "MIT"
|
2021-06-22 19:42:12 +00:00
|
|
|
homepage = "https://github.com/TaKO8Ki/gobang"
|
|
|
|
repository = "https://github.com/TaKO8Ki/gobang"
|
|
|
|
readme = "README.md"
|
2021-09-06 15:41:44 +00:00
|
|
|
description = "A cross-platform TUI database management tool written in Rust"
|
2021-09-07 13:12:44 +00:00
|
|
|
exclude = ["resources/"]
|
2021-06-12 04:43:25 +00:00
|
|
|
|
2021-07-09 08:46:18 +00:00
|
|
|
[workspace]
|
|
|
|
members=[
|
|
|
|
"database-tree"
|
|
|
|
]
|
|
|
|
|
2021-06-12 04:43:25 +00:00
|
|
|
[dependencies]
|
2021-09-07 10:10:27 +00:00
|
|
|
tui = { version = "0.15.0", features = ["crossterm"], default-features = false }
|
|
|
|
crossterm = "0.20"
|
2021-06-22 18:40:27 +00:00
|
|
|
anyhow = "1.0.38"
|
|
|
|
unicode-width = "0.1"
|
2021-09-07 10:10:27 +00:00
|
|
|
sqlx = { version = "0.5.6", features = ["mysql", "postgres", "sqlite", "chrono", "runtime-tokio-rustls", "decimal", "json"], default-features = false }
|
2021-06-22 18:40:27 +00:00
|
|
|
chrono = "0.4"
|
2021-09-07 10:10:27 +00:00
|
|
|
tokio = { version = "1.11.0", features = ["full"] }
|
2021-06-22 18:40:27 +00:00
|
|
|
futures = "0.3.5"
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
toml = "0.4"
|
2021-07-04 09:36:47 +00:00
|
|
|
strum = "0.21"
|
|
|
|
strum_macros = "0.21"
|
2021-09-15 11:14:32 +00:00
|
|
|
database-tree = { path = "./database-tree", version = "0.1.0-alpha.5" }
|
2021-07-07 07:15:18 +00:00
|
|
|
easy-cast = "0.4"
|
2021-07-18 15:50:39 +00:00
|
|
|
async-trait = "0.1.50"
|
2021-07-29 10:47:36 +00:00
|
|
|
itertools = "0.10.0"
|
|
|
|
rust_decimal = "1.15"
|
2021-08-28 06:42:44 +00:00
|
|
|
dirs-next = "2.0"
|
|
|
|
clap = "2.33.3"
|
|
|
|
structopt = "0.3.22"
|
2021-07-07 07:15:18 +00:00
|
|
|
|
2021-08-08 14:25:22 +00:00
|
|
|
[target.'cfg(all(target_family="unix",not(target_os="macos")))'.dependencies]
|
|
|
|
which = "4.1"
|