Files
rust/Cargo.toml
2024-05-03 12:25:20 +03:00

19 lines
515 B
TOML

[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"