feat: new usual deps

This commit is contained in:
davidontop 2024-07-17 14:30:05 +02:00
parent 23e5ce0c49
commit 14eeeceaa8
Signed by: DavidOnTop
GPG key ID: 5D05538A45D5149F
14 changed files with 17 additions and 1 deletions

0
.editorconfig Normal file → Executable file
View file

0
.gitignore vendored Normal file → Executable file
View file

0
.rustfmt.toml Normal file → Executable file
View file

13
Cargo.toml Normal file → Executable file
View file

@ -7,7 +7,7 @@ authors = ["{{authors}}"]
readme = "README.md" readme = "README.md"
documentation = "https://docs.rs/{{project-name}}" documentation = "https://docs.rs/{{project-name}}"
license = "{{license}}" license = "{{license}}"
repository = "git@github.com:{{username}}/{{project-name}}.git" repository = "https://git.davidon.top/public/{{project-name}}.git"
[dependencies] [dependencies]
{% if serde -%} {% if serde -%}
@ -19,5 +19,16 @@ tracing = "0.1"
tracing-subscriber = "0.3" tracing-subscriber = "0.3"
{%- endif -%} {%- endif -%}
{%- if async %} {%- if async %}
async-global-executor = { version = "2", features = ["tokio"] }
tokio = { version = "1.0", features = ["full"] } tokio = { version = "1.0", features = ["full"] }
{%- endif -%} {%- 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"

0
LICENSE-GLWTPL Normal file → Executable file
View file

0
LICENSE-GPL3 Normal file → Executable file
View file

0
LICENSE-MIT Normal file → Executable file
View file

0
README.md Normal file → Executable file
View file

0
TEMPLATE.md Normal file → Executable file
View file

5
cargo-generate.toml Normal file → Executable file
View file

@ -20,6 +20,11 @@ type = "bool"
prompt = "Tracing?" prompt = "Tracing?"
default = true default = true
[placeholders.axum]
type = "bool"
prompt = "axum?"
default = true
[placeholders.license] [placeholders.license]
type = "string" type = "string"
prompt = "License?" prompt = "License?"

0
post.rhai Normal file → Executable file
View file

0
pre.rhai Normal file → Executable file
View file

0
src/lib.rs Normal file → Executable file
View file

0
src/main.rs Normal file → Executable file
View file