This commit is contained in:
2024-05-03 12:25:20 +03:00
commit 8236ae0642
19 changed files with 452 additions and 0 deletions

18
Cargo.toml Normal file
View File

@ -0,0 +1,18 @@
[package]
name = "{{project-name}}"
description = ""
version = "0.0.0-git"
authors = ["{{authors}}"]
edition = "2021"
license-file = "LICENSE.txt"
documentation = "https://git.smetan.ru/{{git-owner}}/{{project-name}}"
homepage = "https://git.smetan.ru/{{git-owner}}/{{project-name}}"
[dependencies]
{%- if use_postgres == true %}
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres"] }
tokio = { version = "1.36.0", features = ["rt", "macros"] }
{%- endif %}
[dev-dependencies]
rusty-hook = "0.11.2"