shark/fish/Cargo.toml

26 lines
567 B
TOML

[package]
name = "fish"
description = "Bot?"
version = "0.1.0"
edition = "2021"
[features]
default = ["io"]
io = ["serde"]
fish-cli = ["anyhow", "clap", "serde_json", "io"]
[dependencies]
mino = { path = "../mino" }
ahash = "0.8"
anyhow = { version = "1.0", optional = true }
clap = { version = "4.0", features = ["derive"], optional = true }
hashbrown = "0.13"
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
[[bin]]
name = "fish-cli"
path = "src/bin/cli.rs"
required-features = ["fish-cli"]