-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 918 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 918 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
34
35
36
[package]
name = "arrive"
version = "0.4.2"
edition = "2021"
description = "A simple CLI tool for interacting with Advent of Code"
repository = "https://github.com/tranzystorekk/arrive"
license = "MIT"
keywords = ["advent", "aoc", "cli", "tool"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "arv"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
dirs = "6.0"
eyre = "0.6"
itertools = "0.14"
minreq = "2.14"
serde = { version = "1.0", features = ["derive"] }
tl = "0.7"
toml = "0.9"
yansi = { version = "1.0", features = ["detect-env", "detect-tty"] }
[build-dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
[features]
default = ["rustls-tls"]
native-tls = ["minreq/https-native"]
rustls-tls = ["minreq/https"]