-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (27 loc) · 889 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
[package]
name = "arrive"
version = "0.4.0"
authors = ["Marcin Puc <tranzystorek.io@protonmail.com>"]
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 = "5.0"
eyre = "0.6"
minreq = { version = "2.12", features = ["https"] }
serde = { version = "1.0", features = ["derive"] }
tl = "0.7"
toml = "0.8"
yansi = { version = "1.0", features = ["detect-env", "detect-tty"] }
[build-dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"