[package]
edition = "2021"
rust-version = "1.89"
name = "bezant-cli"
version = "0.3.0"
authors = ["Isaac Rowntree <isaac@triptech.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool for the IBKR Client Portal Web API (Bezant)"
homepage = "https://github.com/isaacrowntree/bezant"
documentation = "https://docs.rs/bezant-cli"
readme = "README.md"
keywords = [
"ibkr",
"interactive-brokers",
"trading",
"cli",
"finance",
]
categories = [
"command-line-utilities",
"finance",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/isaacrowntree/bezant"
[[bin]]
name = "bezant"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bezant-api]
version = "0.3.0"
[dependencies.bezant-core]
version = "0.3.0"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7"
default-features = false
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"cookies",
"rustls",
"charset",
"http2",
"query",
"form",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"net",
"time",
]
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1