Package Details: sticky-rs-git 1.0.0-1

Git Clone URL: https://aur.archlinux.org/sticky-rs-git.git (read-only, click to copy)
Package Base: sticky-rs-git
Description: Image sticky note app that enables users to stick pictures to the desktop and have them always visible
Upstream URL: https://github.com/FengZhongShaoNian/sticky-rs
Licenses: GPL2
Conflicts: sticky-rs
Provides: sticky-rs
Submitter: linfeng
Maintainer: linfeng
Last Packager: linfeng
Votes: 0
Popularity: 0.000000
First Submitted: 2024-08-13 14:08 (UTC)
Last Updated: 2024-08-14 02:22 (UTC)

Latest Comments

linfeng commented on 2025-05-03 13:53 (UTC)

对于国内的用户,可以这样加快rust依赖的下载速度:

# 在 个人文件夹的 .cargo 目录新建文件config.toml
mkdir "$HOME/.cargo"
vim "$HOME/.cargo/config.toml"

编辑文件内容:

[source.crates-io]
registry="https://github.com/rust-lang/crates.io-index" # 这行可以不要,只是说明原始地址
replace-with = 'tuna' # 指定使用下面哪个源,修改为source.后面的内容即可

# 中国科学技术大学
[source.ustc]
registry = "sparse+https://mirrors.ustc.edu.cn/crates.io-index/"

# 上海交通大学
[source.sjtu]
registry = "sparse+https://mirrors.sjtug.sjtu.edu.cn/crates.io-index/"

# 清华大学
[source.tuna]
registry = "sparse+https://mirrors.tuna.tsinghua.edu.cn/crates.io-index/"

# 阿里云
[source.aliyun]
registry = "sparse+https://mirrors.aliyun.com/crates.io-index/"

# https://rsproxy.cn/
[source.rsproxy-sparse]
registry = "sparse+https://rsproxy.cn/index/"