-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (74 loc) · 2.31 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Adds recommended packages below
[package]
name = "rust-cli-starter"
version = "0.1.0"
description = "A starter for a CLI app using Clap's derive features."
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
color-eyre = "0.6.3"
thiserror = "1.0.58"
[dependencies.clap]
git = "https://github.com/clap-rs/clap"
branch = "master"
features = ["derive"]
# Recommended dependencies. These are recommendations, and can be added with the
# `cargo add` command.
#
# -----------------------------------------------------[general recommendations]
# serde
# git: https://github.com/serde-rs/serde
# command: cargo add serde
# desc: Serialization library for Rust
#
# tokio = { , branch = "master" }
# git: https://github.com/tokio-rs/tokio
# command: cargo add tokio -F full
# desc: Asynchronous I/O for Rust
#
# reqwest = { , branch = "master" }
# git: https://github.com/seanmonstar/reqwest
# command: cargo add reqwest -F json
# desc: Asynchronous HTTP client for Rust
#
# once_cell
# git: https://github.com/matklad/once_cell
# command: cargo add once_cell
# desc: A simple, fast, thread-safe, zero-allocation, lazy static cell
#
# ----------------------------------------------[error handling recommendations]
# anyhow
# git: https://github.com/dtolnay/anyhow
# command: cargo add anyhow
# desc: A lightweight, fast, and ergonomic error type for Rust
#
# thiserror
# git: https://github.com/dtolnay/thiserror
# command: cargo add thiserror
# desc: A lightweight, fast, and ergonomic error type for Rust
#
# -------------------------------------[diagnostics and testing recommendations]
# tracing
# git: https://github.com/tokio-rs/tracing
# command: cargo add tracing
# desc: Application level tracing for Rust
#
# tracing-subscriber
# git: https://github.com/tokio-rs/tracing
# command: cargo add tracing-subscriber
# desc: Utilities for implementing tracing subscribers
#
# insta
# git: https://github.com/mitsuhiko/insta
# command: cargo add insta
# desc: A snapshot testing library for Rust
#
# fake
# git: https://github.com/cksac/fake-rs
# command: cargo add fake
# desc: A library for generating fake data
#
# wiremock
# git: https://github.com/LukeMathWalker/wiremock-rs
# command: cargo add wiremock
# desc: A library for mocking HTTP requests and responses