gobang/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

2021-06-12 04:43:25 +00:00
[package]
2021-06-12 05:18:24 +00:00
name = "gobang"
version = "0.1.0-alpha.0"
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"
description = "A cross-platform terminal database tool written in Rust"
2021-06-12 04:43:25 +00:00
[workspace]
members=[
"database-tree"
]
2021-06-12 04:43:25 +00:00
[dependencies]
tui = { version = "0.14.0", features = ["crossterm"], default-features = false }
crossterm = "0.19"
anyhow = "1.0.38"
unicode-width = "0.1"
2021-08-03 17:32:41 +00:00
sqlx = { version = "0.4.1", features = ["mysql", "postgres", "chrono", "runtime-tokio-rustls", "decimal"] }
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", default-features = false }
async-trait = "0.1.50"
itertools = "0.10.0"
rust_decimal = "1.15"
[target.'cfg(any(target_os = "macos", windows))'.dependencies]
copypasta = { version = "0.7.0", default-features = false }
[target.'cfg(not(any(target_os = "macos", windows)))'.dependencies]
copypasta = { version = "0.7.0", features = ["x11"], default-features = false }