54 lines
1.0 KiB
TOML
54 lines
1.0 KiB
TOML
|
|
[package]
|
||
|
|
name = "opusr-client"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
rust-version = "1.75"
|
||
|
|
description = "opusR Monitor client — z/OS RACF security analysis"
|
||
|
|
authors = ["opus Software GmbH <info@opus-it.at>"]
|
||
|
|
license = "Proprietary"
|
||
|
|
repository = "https://iws.opus-it.at/opus/opusr-client"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
# Async runtime
|
||
|
|
tokio = { version = "1", features = ["full"] }
|
||
|
|
|
||
|
|
# HTTP client
|
||
|
|
reqwest = { version = "0.12", features = ["json", "native-tls"], default-features = false }
|
||
|
|
|
||
|
|
# JSON
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
|
||
|
|
# CLI
|
||
|
|
clap = { version = "4", features = ["derive", "env"] }
|
||
|
|
|
||
|
|
# TUI
|
||
|
|
ratatui = "0.29"
|
||
|
|
crossterm = "0.28"
|
||
|
|
|
||
|
|
# Security
|
||
|
|
secrecy = { version = "0.10", features = ["serde"] }
|
||
|
|
|
||
|
|
# Error handling
|
||
|
|
thiserror = "2"
|
||
|
|
anyhow = "1"
|
||
|
|
|
||
|
|
# Logging
|
||
|
|
tracing = "0.1"
|
||
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||
|
|
|
||
|
|
# Config
|
||
|
|
directories = "6"
|
||
|
|
toml = "0.8"
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
wiremock = "0.6"
|
||
|
|
tokio-test = "0.4"
|
||
|
|
assert_cmd = "2"
|
||
|
|
predicates = "3"
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
lto = true
|
||
|
|
strip = true
|
||
|
|
codegen-units = 1
|