-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (34 loc) · 879 Bytes
/
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
[package]
authors = ["pjmp"]
categories = ["command-line-utilities"]
description = """
Highly readable supplement to man pages.
Shows simple, concise examples for commands.
"""
edition = "2021"
homepage = "https://github.com/pombadev/bropages"
keywords = ["bro", "bropages", "tldr", "cheatsheet"]
license = "MIT"
name = "bropages"
readme = "README.md"
repository = "https://github.com/pombadev/bropages"
resolver = "2"
version = "1.5.0"
[dependencies]
bat = {version = "0.24.0", default-features = false, features = ["paging", "regex-fancy"]}
clap = {version = "4.5.4", default-features = false, features = [
"error-context",
"help",
"std",
"suggestions",
"usage",
]}
ureq = {version = "2.9.6", default-features = false, features = ["json"]}
[[bin]]
name = "bro"
path = "src/main.rs"
[profile.release]
lto = true
opt-level = 3
panic = 'abort'
strip = true