[package]
edition = "2024"
name = "corner"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal-based task journal for developers. Capture ideas without leaving your workflow, find them when you need them."
readme = "README.md"
keywords = [
"tui",
"terminal",
"bullet-journal",
"todo",
"productivity",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/bantamhq/corner"
[lib]
name = "corner"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "corner"
path = "src/main.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "invariants"
path = "tests/invariants.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "sync"
path = "tests/sync.rs"
[[test]]
name = "workflows"
path = "tests/workflows.rs"
[dependencies.arboard]
version = "3.6.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "6.0"
[dependencies.ical]
version = "0.11"
[dependencies.libc]
version = "0.2"
[dependencies.ratatui]
version = "0.29"
features = ["widget-calendar"]
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.rrule]
version = "0.13"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.time]
version = "0.3"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.serde]
version = "1.0"
features = ["derive"]
[build-dependencies.toml]
version = "0.8"
[profile.dist]
lto = "thin"
inherits = "release"