[package]
edition = "2024"
rust-version = "1.96"
name = "aven-core"
version = "0.1.13"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for the Aven local-first task manager"
readme = false
license = "MIT"
repository = "https://github.com/raine/aven"
[features]
test-support = []
[lib]
name = "aven_core"
path = "src/lib.rs"
[[test]]
name = "attachment_storage"
path = "tests/attachment_storage.rs"
[[test]]
name = "attachment_task_creation"
path = "tests/attachment_task_creation.rs"
[[test]]
name = "consumer_api"
path = "tests/consumer_api.rs"
[[test]]
name = "extraction"
path = "tests/extraction.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.flate2]
version = "1.1"
[dependencies.getrandom]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.image]
version = "=0.25.9"
features = [
"gif",
"jpeg",
"png",
"webp",
]
default-features = false
[dependencies.oxipng]
version = "10.1"
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.11"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"sqlite",
"macros",
"migrate",
]
default-features = false
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3.14"
[dependencies.tokio]
version = "1.45"
features = [
"macros",
"rt",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.tempfile]
version = "3.14"