-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 911 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
[package]
name = "ippsec"
version = "0.1.0"
rust-version = "1.57"
edition = "2021"
authors = ["Benoît Benedetti <[email protected]>"]
description = "An interactive tool to navigate https://ippsec.rocks/ videos"
homepage = "https://github.com/humboldtux/ippsec"
documentation = "https://github.com/humboldtux/ippsec"
repository = "https://github.com/humboldtux/ippsec"
license = "MIT"
readme = "README.md"
keywords = ["terminal", "cli", "tui", "fuzzy", "skim"]
categories = ["command-line-utilities"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1.0.52"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0.133", features = ["derive"] }
serde_json = "1.0.74"
skim = "0.9.4"
webbrowser = "0.5.5"
[features]
default = []
nix = []
[profile.release]
codegen-units = 1
debug = false
incremental = true
lto = true
panic = "abort"