shark/fish/Cargo.toml

35 lines
783 B
TOML
Raw Normal View History

2022-12-15 23:26:51 +00:00
[package]
name = "fish"
description = "Bot?"
version = "0.1.0"
edition = "2021"
2022-12-15 23:27:30 +00:00
[features]
default = ["io"]
io = ["serde"]
2023-03-05 00:23:57 +00:00
fish-cli = [
"dep:anyhow",
"dep:clap",
"dep:serde_json",
"dep:tracing-subscriber",
"io",
]
2022-12-15 23:27:30 +00:00
2022-12-15 23:26:51 +00:00
[dependencies]
mino = { path = "../mino" }
2022-12-15 23:27:30 +00:00
ahash = "0.8"
2022-12-16 15:30:32 +00:00
anyhow = { version = "1.0", optional = true }
bumpalo = "3.12"
2022-12-16 15:30:32 +00:00
clap = { version = "4.0", features = ["derive"], optional = true }
2022-12-15 23:27:30 +00:00
hashbrown = "0.13"
serde = { version = "1.0", features = ["derive"], optional = true }
2022-12-16 15:30:32 +00:00
serde_json = { version = "1.0", optional = true }
2023-03-05 00:23:57 +00:00
tracing = { version = "0.1", default_features = false }
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"], optional = true }
2022-12-16 15:30:32 +00:00
[[bin]]
name = "fish-cli"
path = "src/bin/cli.rs"
required-features = ["fish-cli"]