19 lines
412 B
TOML
19 lines
412 B
TOML
[package]
|
|
name = "tngame-rs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.69", features = ["backtrace"] }
|
|
log = "0.4.17"
|
|
tokio = { version = "1", features = ["full"] }
|
|
pretty_env_logger = "0.4.0"
|
|
termion = "2.0.1"
|
|
rand = "0.8.5"
|
|
concat-string = "1.0.1"
|
|
|
|
[profile.release]
|
|
debug = 1
|