Initial commit

This commit is contained in:
davidon-top 2023-12-08 20:12:52 +00:00 committed by GitHub
commit 8afbd6324d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 1406 additions and 0 deletions

17
Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "rust-template"
version = "0.1.0"
edition = "2021"
description = "A template for rust projects"
authors = ["DavidOnTop <me@davidon.top>"]
readme = "README.md"
documentation = "https://docs.rs/rust-template"
license = "MIT"
repository = "git@github.com:davidon-top/rust-template.git"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tokio = { version = "1.0", features = ["full"] }