[package]
edition = "2021"
name = "lean-tui"
version = "0.2.1"
authors = ["Willem Vanhulle <willemvanhulle@protonmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone TUI infoview for Lean 4 theorem prover"
readme = "README.md"
keywords = [
"lean4",
"proof-assistant",
"tui",
"mathematics",
]
license = "MIT"
repository = "https://codeberg.org/wvhulle/lean-tui"
[[bin]]
name = "lean-tui"
path = "src/main.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
features = [
"event-stream",
"osc52",
]
[dependencies.dirs]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.ratatui]
version = "0.29"
[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"]
[build-dependencies.prettyplease]
version = "0.2"
[build-dependencies.serde_json]
version = "1"
[build-dependencies.syn]
version = "2"
[build-dependencies.typify]
version = "0.4"
[build-dependencies.ureq]
version = "2"
[lints.clippy]
nursery = "warn"
pedantic = "deny"
[lints.clippy.absolute_paths]
level = "warn"
priority = 2
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 2
[lints.clippy.cast_possible_wrap]
level = "allow"
priority = 2
[lints.clippy.cast_sign_loss]
level = "allow"
priority = 2
[lints.clippy.excessive_nesting]
level = "warn"
priority = 2
[lints.clippy.large_enum_variant]
level = "allow"
priority = 2
[lints.clippy.missing_const_for_fn]
level = "allow"
priority = 2
[lints.clippy.missing_errors_doc]
level = "allow"
priority = -1
[lints.clippy.struct_excessive_bools]
level = "allow"
priority = 2