-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
89 lines (84 loc) · 1.9 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
description = "Sync GitHub followings to followers"
license = "Unlicense"
repository = "https://github.com/Resonaa/gfas"
homepage = "https://github.com/Resonaa/gfas"
keywords = ["github", "follow", "follower", "following", "sync"]
categories = ["command-line-utilities", "api-bindings"]
authors = ["Resonaa <[email protected]>"]
rust-version = "1.77"
[workspace.dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.26", features = ["derive"] }
clap_complete = "4.5.42"
clap_mangen = "0.2.26"
clap-verbosity-flag = "2.2.3"
futures = "0.3.31"
octorust = "0.7.0"
tokio = { version = "1.43.0", features = [
"rt-multi-thread",
"macros",
"signal",
] }
tokio-util = { version = "0.7.13", features = ["rt"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
trycmd = "0.15.8"
[workspace.metadata.release]
pre-release-commit-message = "chore: release"
tag-message = "chore: release"
tag-name = "v{{version}}"
verify = false
[profile.release]
strip = "symbols"
lto = "fat"
panic = "abort"
codegen-units = 1
[workspace.package.metadata.deb]
section = "utils"
assets = [
[
"./target/release/gfas",
"/usr/bin/",
"755",
],
[
"./LICENSE",
"/usr/share/doc/gfas/",
"644",
],
[
"./README.md",
"/usr/share/doc/gfas/README",
"644",
],
[
"./target/out/gfas.1",
"/usr/share/man/man1/",
"644",
],
[
"./target/out/gfas.bash",
"/usr/share/bash-completion/completions/gfas",
"644",
],
[
"./target/out/gfas.fish",
"/usr/share/fish/vendor_completions.d/",
"644",
],
[
"./target/out/_gfas",
"/usr/share/zsh/vendor-completions/",
"644",
],
[
"./target/out/gfas.elv",
"/usr/share/.elvish/completions/",
"644",
],
]