generated from clechasseur/exsb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (29 loc) · 1.06 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
[package]
name = "auxiliaire"
version = "0.2.2"
authors = [ "Charles Lechasseur <[email protected]>" ]
edition = "2021"
readme = "README.md"
license = "MIT"
homepage = "https://github.com/clechasseur/auxiliaire#readme"
repository = "https://github.com/clechasseur/auxiliaire"
description = "Your friendly Exercism.org assistant"
keywords = [ "cli", "exercism" ]
categories = [ "command-line-utilities" ]
include = [ "src/**/*", "tests/**/*", "Cargo.lock", "Cargo.toml", "LICENSE", "README.md" ]
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.23", features = ["derive"] }
clap-verbosity-flag = "3.0.2"
itertools = "0.13.0"
mini_exercism = { version = "4.2.0", features = ["cli", "cookies"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["rt-multi-thread", "io-util", "macros", "sync", "fs"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[dev-dependencies]
assert_cmd = "2.0.16"
assert_matches = "1.5.0"
test-log = "0.2.16"
wiremock = "0.6.2"