[package]
edition = "2024"
name = "atelier-sdk"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The atelier SDK and engine: workspaces, snapshots, sessions, gated landing, and the journal"
readme = "README.md"
keywords = [
"versioning",
"workspace",
"agents",
"diff",
"jj",
]
categories = [
"development-tools",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/bipa-app/atelier"
[lib]
name = "atelier_sdk"
path = "src/lib.rs"
[[test]]
name = "mounts"
path = "tests/mounts.rs"
[[test]]
name = "remote"
path = "tests/remote.rs"
[[test]]
name = "sessions"
path = "tests/sessions.rs"
[[test]]
name = "sync"
path = "tests/sync.rs"
[[test]]
name = "undo"
path = "tests/undo.rs"
[[test]]
name = "watch"
path = "tests/watch.rs"
[[test]]
name = "workspace"
path = "tests/workspace.rs"
[dependencies.atelier-sdk-diff]
version = "0.1.0"
[dependencies.atelier-sdk-docx]
version = "0.3.0"
[dependencies.atelier-sdk-remote]
version = "0.1.0"
[dependencies.futures]
version = "0.3"
features = ["std"]
default-features = false
[dependencies.gix-hash]
version = "0.25"
[dependencies.jj-lib]
version = "=0.44.0"
[dependencies.notify]
version = "8"
[dependencies.pollster]
version = "0.4"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.zip]
version = "8"
features = ["deflate-flate2-zlib-rs"]
default-features = false
[lints.clippy.all]
level = "warn"
priority = 0
[lints.clippy.allow_attributes]
level = "warn"
priority = 2
[lints.clippy.allow_attributes_without_reason]
level = "warn"
priority = 2
[lints.clippy.cast-possible-wrap]
level = "allow"
priority = 3
[lints.clippy.cast-precision-loss]
level = "allow"
priority = 3
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 3
[lints.clippy.cast_sign_loss]
level = "allow"
priority = 3
[lints.clippy.implicit_clone]
level = "warn"
priority = 2
[lints.clippy.inconsistent_digit_grouping]
level = "allow"
priority = 3
[lints.clippy.missing-errors-doc]
level = "allow"
priority = 3
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 3
[lints.clippy.panic]
level = "warn"
priority = 2
[lints.clippy.pedantic]
level = "warn"
priority = 1
[lints.clippy.redundant_test_prefix]
level = "warn"
priority = 2
[lints.clippy.redundant_type_annotations]
level = "warn"
priority = 2
[lints.clippy.result_large_err]
level = "allow"
priority = 3
[lints.clippy.str_to_string]
level = "warn"
priority = 2
[lints.clippy.struct_excessive_bools]
level = "allow"
priority = 3
[lints.clippy.todo]
level = "warn"
priority = 2
[lints.clippy.too_many_arguments]
level = "allow"
priority = 3
[lints.clippy.too_many_lines]
level = "warn"
priority = 3
[lints.clippy.try_err]
level = "warn"
priority = 2
[lints.clippy.unimplemented]
level = "warn"
priority = 2
[lints.clippy.unreadable_literal]
level = "allow"
priority = 3
[lints.clippy.unwrap_used]
level = "warn"
priority = 2
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"