26 lines
580 B
TOML
26 lines
580 B
TOML
[package]
|
|
name = "kimiswitch"
|
|
version = "0.1.0"
|
|
description = "Kimi Code CLI config manager"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.0.0", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.0.0", features = [] }
|
|
tauri-plugin-shell = "2.0.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml_edit = "0.22"
|
|
indexmap = { version = "2.2", features = ["serde"] }
|
|
dirs = "5.0"
|
|
thiserror = "1.0"
|
|
chrono = "0.4"
|
|
anyhow = "1.0"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|