-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.12 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
[package]
name = "gr-bin"
description = "Interact with remote repositories like you interact with git"
version = "0.2.1"
edition = "2021"
license = "MIT"
documentation = "https://github.com/daniel7grant/gr"
repository = "https://github.com/daniel7grant/gr"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }_{ target }{ archive-suffix }"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
[dependencies]
atty = "0.2.14"
base64 = "0.13.1"
clap = { version = "4.1.1", features = ["derive"] }
clap_complete = "4.1.0"
colored = "2.0.0"
dirs = "4.0.0"
eyre = "0.6.8"
native-tls = "0.2.11"
open = "3.2.0"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
time = { version = "0.3.20", features = ["serde-well-known"] }
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["ansi", "json"] }
ureq = { version = "2.6.2", default-features = false, features = ["gzip", "json", "native-tls"] }
urlencoding = "2.1.2"
[[bin]]
name = "gr"
path = "src/main.rs"
[profile.release]
strip = true
[dev-dependencies]
rand = "0.8.5"