8e9d108995
Tauri 2 + React:任务列表、快捷方式、番茄钟、系统托盘、钉子穿透模式等。 Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
417 B
TOML
17 lines
417 B
TOML
# 项目级 cargo 镜像配置:解决 crates.io 在国内网络下载超时的问题
|
|
# 仅作用于本项目,不影响全局
|
|
[source.crates-io]
|
|
replace-with = "rsproxy-sparse"
|
|
|
|
[source.rsproxy]
|
|
registry = "https://rsproxy.cn/crates.io-index"
|
|
|
|
[source.rsproxy-sparse]
|
|
registry = "sparse+https://rsproxy.cn/index/"
|
|
|
|
[registries.rsproxy]
|
|
index = "https://rsproxy.cn/crates.io-index"
|
|
|
|
[net]
|
|
git-fetch-with-cli = true
|