-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 779 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 779 Bytes
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
[package]
name = "rrc"
version = "0.2.1"
authors = ["mopemope <yutaka.matsubara@gmail.com>"]
edition = "2021"
description = "A manage remote repository clones"
homepage = "https://github.com/mopemope/rrc"
repository = "https://github.com/mopemope/rrc"
keywords = ["git", "tool"]
readme = "README.md"
license = "Apache-2.0"
[dependencies]
clap = { version = "3", features = ["std"], default-features = false }
anyhow = "1"
lazy_static = "1.4"
log = "0.4"
env_logger = { version = "0.11", default-features = false }
regex = { version = "1", default-features = false }
toml = "0.5"
serde = { version = "1", default-features = false }
serde_derive = "1"
dirs = "5"
url = "2.1"
async-std = "1"
[profile.dev]
debug = 0
[profile.release]
lto = true
codegen-units = 1
panic = "abort"