chore: update dependencies and clean up Windows icons
- Update package.json dependencies - Bump package version for consistency - Update Cargo dependencies - Add new dependencies required for enhanced functionality - Update Cargo.lock with resolved versions - Update tauri.conf.json with new build configurations - Add platform-specific settings - Configure bundle options for different targets - Update .gitignore patterns - Add new build artifacts to ignore list - Minor fix in claude.rs command implementation
This commit is contained in:
@@ -8,6 +8,10 @@ edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[[bin]]
|
||||
name = "claudia"
|
||||
path = "src/main.rs"
|
||||
|
||||
[lib]
|
||||
name = "claudia_lib"
|
||||
crate-type = ["lib", "cdylib", "staticlib"]
|
||||
@@ -39,7 +43,7 @@ regex = "1"
|
||||
glob = "0.3"
|
||||
base64 = "0.22"
|
||||
libc = "0.2"
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
reqwest = { version = "0.12", features = ["json", "native-tls-vendored"] }
|
||||
futures = "0.3"
|
||||
async-trait = "0.1"
|
||||
tempfile = "3"
|
||||
@@ -58,3 +62,9 @@ objc = "0.2"
|
||||
[features]
|
||||
# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!!
|
||||
custom-protocol = ["tauri/custom-protocol"]
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
||||
opt-level = "z"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
|
Reference in New Issue
Block a user