[package]
edition = "2024"
name = "ito-core"
version = "0.1.10"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core functionality and business logic for Ito"
homepage = "https://github.com/withakay/ito"
readme = false
license = "MIT"
repository = "https://github.com/withakay/ito"
[lib]
name = "ito_core"
path = "src/lib.rs"
[[test]]
name = "archive"
path = "tests/archive.rs"
[[test]]
name = "create"
path = "tests/create.rs"
[[test]]
name = "distribution"
path = "tests/distribution.rs"
[[test]]
name = "harness_opencode"
path = "tests/harness_opencode.rs"
[[test]]
name = "harness_streaming"
path = "tests/harness_streaming.rs"
[[test]]
name = "harness_stub"
path = "tests/harness_stub.rs"
[[test]]
name = "io"
path = "tests/io.rs"
[[test]]
name = "planning_init"
path = "tests/planning_init.rs"
[[test]]
name = "ralph"
path = "tests/ralph.rs"
[[test]]
name = "repo_index"
path = "tests/repo_index.rs"
[[test]]
name = "repo_integrity"
path = "tests/repo_integrity.rs"
[[test]]
name = "repo_paths"
path = "tests/repo_paths.rs"
[[test]]
name = "show"
path = "tests/show.rs"
[[test]]
name = "stats"
path = "tests/stats.rs"
[[test]]
name = "tasks_api"
path = "tests/tasks_api.rs"
[[test]]
name = "tasks_checkbox_format"
path = "tests/tasks_checkbox_format.rs"
[[test]]
name = "tasks_orchestration"
path = "tests/tasks_orchestration.rs"
[[test]]
name = "templates_apply_instructions"
path = "tests/templates_apply_instructions.rs"
[[test]]
name = "templates_change_status"
path = "tests/templates_change_status.rs"
[[test]]
name = "templates_review_context"
path = "tests/templates_review_context.rs"
[[test]]
name = "templates_schema_resolution"
path = "tests/templates_schema_resolution.rs"
[[test]]
name = "templates_user_guidance"
path = "tests/templates_user_guidance.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[dependencies.chrono]
version = "0.4.40"
features = [
"clock",
"std",
]
default-features = false
[dependencies.ito-common]
version = "0.1.10"
[dependencies.ito-config]
version = "0.1.10"
[dependencies.ito-domain]
version = "0.1.10"
[dependencies.ito-templates]
version = "0.1.10"
[dependencies.miette]
version = "7.2.0"
features = ["fancy"]
[dependencies.regex]
version = "1.11.1"
[dependencies.rusqlite]
version = "0.31.0"
features = ["bundled"]
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.138"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.11"
[dependencies.tracing]
version = "0.1.41"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.filetime]
version = "0.2"
[dev-dependencies.tempfile]
version = "3.15.0"