estrus-navigator/Cargo.toml
Amelia 7c714a9655
Add CLI flags to select which sections to show
Users of the binary can now provide flags `-d/--defs`, `-r/--refs` or
`-c/--docs` to select which sections of the Elixir response they wish to
see. These options can be combined. If none are provided, the default
behaviour is to show everything.

Signed-off-by: Lymkwi <lymkwi@vulpinecitrus.info>
2024-02-22 19:45:36 +01:00

18 lines
503 B
TOML

[package]
name = "estrus"
version = "0.1.2"
edition = "2021"
authors = ["Lymkwi"]
license = "ACSL"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.1", features = ["derive"] }
reqwest = { version = "0.11.22", features = ["default-tls", "json", "gzip"] }
serde = { version = "1.0.190", features = ["derive"] }
tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros", "net"] }
[[bin]]
name = "estrus"