A rust template

This commit is contained in:
bluepython508
2023-12-12 21:51:35 +00:00
parent 3ee80f4734
commit c35a075586
9 changed files with 997 additions and 0 deletions

14
rust-tmpl/Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[package]
name = "{{ name }}"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
color-eyre = "0.6.2"
eyre = "0.6.8"
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }