agent-desktop/Cargo.toml
github-actions[bot] 20fa631796
chore(main): release 0.3.0 (#61)
* chore(main): release 0.2.4

* chore: sync cargo lock for release 1.85

* docs: expand 0.2.4 release notes

* chore: release 0.3.0

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Lahfir <nmhlahfir2@gmail.com>
2026-06-20 13:00:45 -07:00

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.3.0" # 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"