[package]
edition = "2021"
rust-version = "1.82"
name = "jjj"
version = "0.4.1"
authors = ["jjj contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Distributed project management and code review for Jujutsu"
homepage = "https://jjj.recursivewhy.com"
readme = "README.md"
keywords = [
"jj",
"jujutsu",
"project-management",
"code-review",
"kanban",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/doug/jjj"
[lib]
name = "jjj"
path = "src/lib.rs"
[[bin]]
name = "jjj"
path = "src/main.rs"
[[test]]
name = "command_completion_test"
path = "tests/command_completion_test.rs"
[[test]]
name = "command_critique_test"
path = "tests/command_critique_test.rs"
[[test]]
name = "command_db_test"
path = "tests/command_db_test.rs"
[[test]]
name = "command_fetch_test"
path = "tests/command_fetch_test.rs"
[[test]]
name = "command_insights_test"
path = "tests/command_insights_test.rs"
[[test]]
name = "command_milestone_test"
path = "tests/command_milestone_test.rs"
[[test]]
name = "command_next_test"
path = "tests/command_next_test.rs"
[[test]]
name = "command_overlaps_test"
path = "tests/command_overlaps_test.rs"
[[test]]
name = "command_problem_test"
path = "tests/command_problem_test.rs"
[[test]]
name = "command_search_test"
path = "tests/command_search_test.rs"
[[test]]
name = "command_solution_test"
path = "tests/command_solution_test.rs"
[[test]]
name = "command_status_test"
path = "tests/command_status_test.rs"
[[test]]
name = "command_tags_test"
path = "tests/command_tags_test.rs"
[[test]]
name = "command_timeline_test"
path = "tests/command_timeline_test.rs"
[[test]]
name = "config_management"
path = "tests/config_management.rs"
[[test]]
name = "doc_test"
path = "tests/doc_test.rs"
[[test]]
name = "embedding_recommendations_test"
path = "tests/embedding_recommendations_test.rs"
[[test]]
name = "embedding_search_test"
path = "tests/embedding_search_test.rs"
[[test]]
name = "events_test"
path = "tests/events_test.rs"
[[test]]
name = "github_sync_e2e_test"
path = "tests/github_sync_e2e_test.rs"
[[test]]
name = "integration_storage"
path = "tests/integration_storage.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "journey_test"
path = "tests/journey_test.rs"
[[test]]
name = "negative_tests"
path = "tests/negative_tests.rs"
[[test]]
name = "push_fetch_test"
path = "tests/push_fetch_test.rs"
[[test]]
name = "sqlite_storage_test"
path = "tests/sqlite_storage_test.rs"
[[test]]
name = "test_helpers"
path = "tests/test_helpers.rs"
[[test]]
name = "workflow_test"
path = "tests/workflow_test.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
]
[dependencies.clap_complete]
version = "4.5"
[dependencies.crossterm]
version = "0.28"
[dependencies.pulldown-cmark]
version = "0.13.1"
features = ["html"]
default-features = false
[dependencies.ratatui]
version = "0.29"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.uuid]
version = "1.11"
features = ["v7"]
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.regex]
version = "1.10"
[dev-dependencies.tempfile]
version = "3.13"
[build-dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
]
[build-dependencies.clap_complete]
version = "4.5"
[profile.release]
lto = "thin"
strip = true