[package]
edition = "2021"
rust-version = "1.82"
name = "intent-engine"
version = "0.11.0"
authors = ["Intent Engine Contributors"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "ie"
description = "A command-line database service for tracking strategic intent, tasks, and events"
homepage = "https://github.com/wayfind/intent-engine"
documentation = "https://docs.rs/intent-engine"
readme = "README.md"
keywords = [
"cli",
"task-management",
"intent",
"database",
"workflow",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wayfind/intent-engine"
[package.metadata.binstall]
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-unknown-linux-gnu]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-linux-x86_64.tar.gz"
[package.metadata.binstall.overrides.aarch64-unknown-linux-gnu]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-linux-aarch64.tar.gz"
[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-macos-x86_64.tar.gz"
[package.metadata.binstall.overrides.aarch64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-macos-aarch64.tar.gz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-windows-x86_64.exe.zip"
pkg-fmt = "zip"
[features]
neo4j = ["neo4rs"]
neo4j-tests = ["neo4j"]
[lib]
name = "intent_engine"
path = "src/lib.rs"
[[bin]]
name = "ie"
path = "src/main.rs"
[[bin]]
name = "ie-neo4j"
path = "src/bin/ie_neo4j.rs"
required-features = ["neo4j"]
[[test]]
name = "cjk_search_tests"
path = "tests/cjk_search_tests.rs"
[[test]]
name = "cli_notifier_tests"
path = "tests/cli_notifier_tests.rs"
[[test]]
name = "dashboard_integration_tests"
path = "tests/dashboard_integration_tests.rs"
[[test]]
name = "doctor_cli_tests"
path = "tests/doctor_cli_tests.rs"
[[test]]
name = "doctor_command_tests"
path = "tests/doctor_command_tests.rs"
[[test]]
name = "focus_switching_tests"
path = "tests/focus_switching_tests.rs"
[[test]]
name = "init_cli_tests"
path = "tests/init_cli_tests.rs"
[[test]]
name = "init_command_tests"
path = "tests/init_command_tests.rs"
[[test]]
name = "interface_spec_test"
path = "tests/interface_spec_test.rs"
[[test]]
name = "logs_integration_test"
path = "tests/logs_integration_test.rs"
[[test]]
name = "manual_plan_test"
path = "tests/manual_plan_test.rs"
[[test]]
name = "neo4j_integration_tests"
path = "tests/neo4j_integration_tests.rs"
[[test]]
name = "owner_mechanism_tests"
path = "tests/owner_mechanism_tests.rs"
[[test]]
name = "performance_large_dataset_tests"
path = "tests/performance_large_dataset_tests.rs"
[[test]]
name = "performance_tests"
path = "tests/performance_tests.rs"
[[test]]
name = "pick_next_blocking_tests"
path = "tests/pick_next_blocking_tests.rs"
[[test]]
name = "priority_and_list_tests"
path = "tests/priority_and_list_tests.rs"
[[test]]
name = "special_chars_tests"
path = "tests/special_chars_tests.rs"
[[test]]
name = "task_edge_cases_tests"
path = "tests/task_edge_cases_tests.rs"
[[test]]
name = "task_start_blocking_tests"
path = "tests/task_start_blocking_tests.rs"
[[test]]
name = "test_helpers_rewrite"
path = "tests/test_helpers_rewrite.rs"
[[bench]]
name = "performance"
path = "benches/performance.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.7"
features = ["ws"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.const_format]
version = "0.2"
[dependencies.dialoguer]
version = "0.11"
[dependencies.dirs]
version = "6.0"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.futures-util]
version = "0.3"
[dependencies.mime_guess]
version = "2.0"
[dependencies.neo4rs]
version = "0.8"
optional = true
[dependencies.open]
version = "5.3"
[dependencies.rand]
version = "0.9"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rust-embed]
version = "8.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"sqlite",
"chrono",
]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.35"
features = [
"rt-multi-thread",
"net",
"sync",
"time",
"macros",
]
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.5"
features = [
"fs",
"cors",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
"chrono",
]
[dependencies.which]
version = "8.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.bytes]
version = "1.11"
[dev-dependencies.criterion]
version = "0.7"
features = ["async_tokio"]
[dev-dependencies.filetime]
version = "0.2"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.serial_test]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.time]
version = "0.3.47"
[dev-dependencies.tokio-tungstenite]
version = "0.24"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = [
"signal",
"process",
"fs",
]
[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
"processthreadsapi",
"handleapi",
"winnt",
"minwindef",
]
[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = ["Win32_System_Console"]
[profile.dev]
debug = 1
[profile.dev.package."*"]
opt-level = 1
[profile.release]
lto = "thin"
codegen-units = 1
[profile.test]
opt-level = 1
debug = 1