2026-02-27 04:29:51 +00:00
|
|
|
[package]
|
|
|
|
|
name = "triple-c"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "triple_c_lib"
|
|
|
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "triple-c"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-03-01 01:45:59 +00:00
|
|
|
tauri = { version = "2", features = ["image-png", "image-ico"] }
|
2026-02-27 04:29:51 +00:00
|
|
|
tauri-plugin-store = "2"
|
|
|
|
|
tauri-plugin-dialog = "2"
|
|
|
|
|
tauri-plugin-opener = "2"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
bollard = "0.18"
|
|
|
|
|
keyring = { version = "3", features = ["apple-native", "windows-native", "linux-native"] }
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
futures-util = "0.3"
|
|
|
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
|
dirs = "6"
|
|
|
|
|
log = "0.4"
|
2026-03-01 01:45:59 +00:00
|
|
|
fern = { version = "0.7", features = ["date-based"] }
|
2026-02-27 04:29:51 +00:00
|
|
|
tar = "0.4"
|
2026-02-28 21:18:33 +00:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
2026-02-27 04:29:51 +00:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["custom-protocol"]
|
|
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|