-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 1001 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "poke_search"
version = "0.1.0"
edition = "2021"
rust-version = "1.84.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true # Enable Link Time Optimisation
strip = true # Strip symbols
panic = "abort" # Don't include backtrace when panics occur
[dependencies]
async-trait = "0" # https://github.com/dtolnay/async-trait
clap = { version = "4", features = ["derive"] } # https://github.com/clap-rs/clap
colored = "3" # https://github.com/mackwic/colored
futures = "0" # https://github.com/rust-lang/futures-rs
itertools = "0" # https://github.com/rust-itertools/itertools
mockall = "0" # https://github.com/asomers/mockall
ngrammatic = "0" # https://github.com/compenguy/ngrammatic
rustemon = "4" # https://github.com/mlemesle/rustemon
textwrap = "0" # https://github.com/mgeisler/textwrap
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } # https://github.com/tokio-rs/tokio