[package]
edition = "2024"
name = "kimun-notes"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal-based notes application"
readme = "README.md"
license = "MIT"
repository = "https://github.com/nico2sh/kimun"
resolver = "2"
[lib]
name = "kimun_notes"
path = "src/lib.rs"
[[bin]]
name = "kimun"
path = "src/main.rs"
[[test]]
name = "cli_integration_test"
path = "tests/cli_integration_test.rs"
[[test]]
name = "cli_phase2_integration_test"
path = "tests/cli_phase2_integration_test.rs"
[[test]]
name = "config_migration_test"
path = "tests/config_migration_test.rs"
[[test]]
name = "json_integration_test"
path = "tests/json_integration_test.rs"
[[test]]
name = "json_output_test"
path = "tests/json_output_test.rs"
[[test]]
name = "metadata_extraction_test"
path = "tests/metadata_extraction_test.rs"
[[test]]
name = "note_commands_test"
path = "tests/note_commands_test.rs"
[[test]]
name = "note_path_resolution_test"
path = "tests/note_path_resolution_test.rs"
[[test]]
name = "workspace_commands_test"
path = "tests/workspace_commands_test.rs"
[[test]]
name = "workspace_config_test"
path = "tests/workspace_config_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.crossterm]
version = "0.29.0"
features = ["event-stream"]
[dependencies.futures]
version = "0.3"
[dependencies.itertools]
version = "0.14.0"
[dependencies.kimun_core]
version = "0.2.0"
[dependencies.log]
version = "0.4"
[dependencies.nucleo]
version = "0.5"
[dependencies.open]
version = "5"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.ratatui]
version = "0.30.0"
features = ["serde"]
[dependencies.ratatui-textarea]
version = "0.8.0"
features = ["search"]
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.simplelog]
version = "0.12"
[dependencies.throbber-widgets-tui]
version = "0.11"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[dependencies.toml]
version = "1.0.7"
[dev-dependencies.tempfile]
version = "3"