-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
25 lines (22 loc) · 1.1 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
[package]
name = "rust-template"
edition = "2021"
version = "0.1.0"
rust-version = "1.76.0"
authors = ["FirstName LastName <[email protected]>"]
description = "A short description of your project."
documentation = "https://github.com/cooperwalbrun/rust-template/blob/master/README.md"
homepage = "https://github.com/cooperwalbrun/rust-template"
repository = "https://github.com/cooperwalbrun/rust-template"
keywords = ["clippy", "llvm", "rust", "rustfmt", "template"]
readme = "README.md"
license-file = "LICENSE"
exclude = ["/.github/*", "/Makefile.toml", "/clippy.toml", "/rustfmt.toml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# If this is a library and not an end-user application, it is recommended to use https://github.com/dtolnay/thiserror
# If this is an end-user application and not a library, it is recommended to use one of the following:
# Non-CLI-based programs: https://github.com/dtolnay/anyhow
# CLI-based programs: https://github.com/yaahc/color-eyre
[dev-dependencies]
# Add development- and/or testing-specific dependencies here