-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 741 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.3.1"
edition = "2024"
rust-version = "1.89"
license = "MIT"
description = "Switch between and run multiple Codex CLI accounts in parallel, without forced re-logins."
repository = "https://github.com/CodePrometheus/codex-buddy"
homepage = "https://github.com/CodePrometheus/codex-buddy"
[workspace.dependencies]
codex-buddy-core = { path = "crates/core" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.22"
pico-args = "0.5"
uniffi = "0.32"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"