mirror of
https://github.com/lahfir/agent-desktop.git
synced 2026-07-26 09:02:17 +00:00
Some checks failed
CI / Format (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / FFI Python Smoke (push) Has been cancelled
CI / FFI Header Drift (push) Has been cancelled
CI / FFI Panic Guard (push) Has been cancelled
CI / FFI Stub-Adapter Passthrough (push) Has been cancelled
CI / FFI Codegen Drift (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (rust) (push) Has been cancelled
Release / Release Please (push) Has been cancelled
Supply Chain / Audit (push) Has been cancelled
Release / Build (aarch64-apple-darwin) (push) Has been cancelled
Release / Build (x86_64-apple-darwin) (push) Has been cancelled
Release / Build FFI (aarch64-apple-darwin) (push) Has been cancelled
Release / Build FFI (x86_64-apple-darwin) (push) Has been cancelled
Release / Build FFI (x86_64-unknown-linux-gnu) (push) Has been cancelled
Release / Build FFI (aarch64-unknown-linux-gnu) (push) Has been cancelled
Release / Build FFI (x86_64-pc-windows-msvc) (push) Has been cancelled
Release / FFI Release Gates (push) Has been cancelled
Release / Publish to GitHub Release (push) Has been cancelled
Release / Publish to npm (push) Has been cancelled
Release / Publish Skills to ClawHub (push) Has been cancelled
* chore(main): release 0.4.5 * chore: sync cargo lock for release 1.85 --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
61 lines
1.6 KiB
TOML
61 lines
1.6 KiB
TOML
[workspace]
|
|
members = ["crates/core", "crates/macos", "crates/windows", "crates/linux", "crates/ffi", "src"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
rust-version = "1.85"
|
|
license = "Apache-2.0"
|
|
version = "0.4.5" # x-release-please-version
|
|
|
|
[workspace.dependencies]
|
|
clap = { version = "4.6", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
base64 = "0.22"
|
|
rustc-hash = "2.1"
|
|
libc = "0.2"
|
|
smallvec = { version = "1.13", features = ["serde", "union"] }
|
|
agent-desktop-core = { path = "crates/core" }
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_op_in_unsafe_fn = "warn"
|
|
unreachable_pub = "allow"
|
|
unused_must_use = "deny"
|
|
let_underscore_drop = "allow"
|
|
|
|
[workspace.lints.clippy]
|
|
dbg_macro = "deny"
|
|
todo = "warn"
|
|
needless_collect = "warn"
|
|
redundant_clone = "allow"
|
|
unwrap_used = "allow"
|
|
expect_used = "allow"
|
|
needless_pass_by_value = "allow"
|
|
manual_let_else = "allow"
|
|
items_after_statements = "allow"
|
|
collapsible_if = "allow"
|
|
print_stdout = "allow"
|
|
print_stderr = "allow"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|
|
|
|
[profile.ci]
|
|
inherits = "release"
|
|
opt-level = 1
|
|
lto = false
|
|
codegen-units = 16
|
|
strip = false
|
|
debug = 1
|
|
|
|
[profile.release-ffi]
|
|
inherits = "release"
|
|
panic = "unwind"
|