-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
57 lines (48 loc) · 1.37 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
[package]
name = "git-brws"
version = "0.11.12"
authors = ["rhysd <lin90162@yahoo.co.jp>"]
description = "Command line tool to open a repository, file, commit, diff, tag, pull request, issue or project's website in your web browser from command line"
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/rhysd/git-brws"
readme = "README.md"
include = ["src/**/*.rs", "Cargo.toml", "LICENSE.txt"]
edition = "2018"
license = "MIT"
[package.metadata.release]
no-dev-version = true
[badges]
maintenance = { status = "actively-developed" }
[[bin]]
name = "git-brws"
[dependencies]
getopts = "0.2"
url = "2.2"
open = "3"
reqwest = { version = "0.11", features = ["json"] }
serde_derive = "1.0"
serde = "1.0"
path-slash = "0.2"
envy = "0.4"
tokio = { version = "1.5", default-features = false }
lazy_static = "1.4"
# Only for futures::join!
futures = { version = "0.3", default-features = false, features = ["async-await"] }
[dev-dependencies]
criterion = "0.3"
# For tokio::test
[dev-dependencies.tokio]
version = "1.5"
default-features = false
features = ["macros"]
[dev-dependencies.cargo-husky]
version = "1.5"
default-features = false
features = ["run-for-all", "prepush-hook", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"]
[profile.release]
lto = true
panic = "abort"
[[bench]]
name = "benchmark"
harness = false
path = "benches/benchmark.rs"