[package]
edition = "2024"
rust-version = "1.96"
name = "aven"
version = "0.1.13"
authors = ["Raine"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first task manager CLI and sync server"
readme = "README.md"
license = "MIT"
repository = "https://github.com/raine/aven"
[lib]
name = "aven"
path = "src/lib.rs"
[[bin]]
name = "aven"
path = "src/main.rs"
[[example]]
name = "logo_spinner"
path = "examples/logo_spinner.rs"
[[test]]
name = "cli_attachment_lifecycle"
path = "tests/cli_attachment_lifecycle.rs"
[[test]]
name = "cli_compat"
path = "tests/cli_compat.rs"
[[test]]
name = "cli_config_daemon"
path = "tests/cli_config_daemon.rs"
[[test]]
name = "cli_conflicts"
path = "tests/cli_conflicts.rs"
[[test]]
name = "cli_context"
path = "tests/cli_context.rs"
[[test]]
name = "cli_daemon_sync"
path = "tests/cli_daemon_sync.rs"
[[test]]
name = "cli_data_safety"
path = "tests/cli_data_safety.rs"
[[test]]
name = "cli_dependencies"
path = "tests/cli_dependencies.rs"
[[test]]
name = "cli_doctor"
path = "tests/cli_doctor.rs"
[[test]]
name = "cli_epics"
path = "tests/cli_epics.rs"
[[test]]
name = "cli_inference_errors"
path = "tests/cli_inference_errors.rs"
[[test]]
name = "cli_inputs"
path = "tests/cli_inputs.rs"
[[test]]
name = "cli_local"
path = "tests/cli_local.rs"
[[test]]
name = "cli_logging"
path = "tests/cli_logging.rs"
[[test]]
name = "cli_prime"
path = "tests/cli_prime.rs"
[[test]]
name = "cli_refs"
path = "tests/cli_refs.rs"
[[test]]
name = "cli_skill"
path = "tests/cli_skill.rs"
[[test]]
name = "cli_sync"
path = "tests/cli_sync.rs"
[[test]]
name = "cli_sync_invariants"
path = "tests/cli_sync_invariants.rs"
[[test]]
name = "cli_task_intake"
path = "tests/cli_task_intake.rs"
[[test]]
name = "cli_workspaces"
path = "tests/cli_workspaces.rs"
[[test]]
name = "sqlite_read_path_indexes"
path = "tests/sqlite_read_path_indexes.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.aven-core]
version = "=0.1.13"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6.0"
[dependencies.flate2]
version = "1.1"
[dependencies.hex]
version = "0.4"
[dependencies.image]
version = "=0.25.9"
features = [
"gif",
"jpeg",
"png",
"webp",
]
default-features = false
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.ratatui]
version = "0.30"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
"gzip",
"brotli",
"zstd",
"deflate",
]
default-features = false
[dependencies.semver]
version = "1.0"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.11"
[dependencies.similar]
version = "3.1"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3.14"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"local-offset",
"macros",
"parsing",
]
[dependencies.tokio]
version = "1.45"
features = [
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"net",
"sync",
"time",
]
[dependencies.tower-http]
version = "0.7"
features = [
"compression-full",
"decompression-full",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.unicode-width]
version = "0.2"
[dependencies.url]
version = "2.5"
[dev-dependencies.aven-core]
version = "=0.1.13"
features = ["test-support"]
[dev-dependencies.oxipng]
version = "10.1"
default-features = false
[dev-dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"sqlite",
"macros",
"migrate",
]
default-features = false
[dev-dependencies.zstd]
version = "0.13"