| 1 | [package] |
| 2 | name = "claudex" |
| 3 | version = "0.0.0" |
| 4 | description = "GUI thread organizer for Claude Code" |
| 5 | authors = ["espadonne"] |
| 6 | edition = "2021" |
| 7 | rust-version = "1.77" |
| 8 | |
| 9 | [lib] |
| 10 | name = "claudex_lib" |
| 11 | crate-type = ["staticlib", "cdylib", "rlib"] |
| 12 | |
| 13 | [build-dependencies] |
| 14 | tauri-build = { version = "2", features = [] } |
| 15 | |
| 16 | [dependencies] |
| 17 | tauri = { version = "2", features = [] } |
| 18 | serde = { version = "1", features = ["derive"] } |
| 19 | serde_json = "1" |
| 20 | tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "sync", "time", "process", "io-util"] } |
| 21 | walkdir = "2" |
| 22 | notify = "7" |
| 23 | notify-debouncer-full = "0.4" |
| 24 | thiserror = "2" |
| 25 | anyhow = "1" |
| 26 | chrono = { version = "0.4", features = ["serde"] } |
| 27 | tracing = "0.1" |
| 28 | tracing-subscriber = { version = "0.3", features = ["env-filter"] } |
| 29 | tracing-appender = "0.2" |
| 30 | dirs = "5" |
| 31 | ts-rs = { version = "11", features = ["chrono-impl", "serde-compat", "serde-json-impl"] } |
| 32 | bincode = { version = "2", features = ["serde"] } |
| 33 | dashmap = "6" |
| 34 | rusqlite = { version = "0.32", features = ["bundled"] } |
| 35 | portable-pty = "0.9" |
| 36 | base64 = "0.22" |
| 37 | |
| 38 | [dev-dependencies] |
| 39 | tempfile = "3" |
| 40 | pretty_assertions = "1" |
| 41 | |
| 42 | [profile.dev] |
| 43 | incremental = true |
| 44 | |
| 45 | [profile.release] |
| 46 | lto = true |
| 47 | codegen-units = 1 |
| 48 | panic = "abort" |
| 49 | strip = true |