[package]
edition = "2024"
name = "ito-core"
version = "0.1.2"
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 = "distribution"
path = "tests/distribution.rs"
[[test]]
name = "harness_opencode"
path = "tests/harness_opencode.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 = "show"
path = "tests/show.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.2"
[dependencies.ito-config]
version = "0.1.2"
[dependencies.ito-domain]
version = "0.1.2"
[dependencies.ito-templates]
version = "0.1.2"
[dependencies.miette]
version = "7.2.0"
features = ["fancy"]
[dependencies.pulldown-cmark]
version = "0.11.3"
[dependencies.regex]
version = "1.11.1"
[dependencies.rusqlite]
version = "0.31.0"
features = ["bundled"]
[dependencies.schemars]
version = "0.8.22"
[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.uuid]
version = "1.11.0"
features = ["v4"]
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.filetime]
version = "0.2"
[dev-dependencies.miette]
version = "7.2.0"
features = ["fancy"]
[dev-dependencies.tempfile]
version = "3.15.0"