feat: new usual deps

This commit is contained in:
DavidOnTop 2024-07-17 14:30:05 +02:00
parent 23e5ce0c49
commit 14eeeceaa8
No known key found for this signature in database
GPG key ID: 5D05538A45D5149F
14 changed files with 17 additions and 1 deletions

13
Cargo.toml Normal file → Executable file
View file

@ -7,7 +7,7 @@ authors = ["{{authors}}"]
readme = "README.md"
documentation = "https://docs.rs/{{project-name}}"
license = "{{license}}"
repository = "git@github.com:{{username}}/{{project-name}}.git"
repository = "https://git.davidon.top/public/{{project-name}}.git"
[dependencies]
{% if serde -%}
@ -19,5 +19,16 @@ tracing = "0.1"
tracing-subscriber = "0.3"
{%- endif -%}
{%- if async %}
async-global-executor = { version = "2", features = ["tokio"] }
tokio = { version = "1.0", features = ["full"] }
{%- endif -%}
{%- if axum %}
axum = "0"
tower = { version = "0", features = ["full"] }
tower-http = { version = "0", features = ["fs"] }
leptos_reactive = { version = "0", features = ["ssr", "nightly"] }
leptos_reactive_axum = { version = "1", features = ["nightly"] }
{%- endif -%}
anyhow = "1"
scopeguard = "1"
partial_application = "0"