-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
34 lines (29 loc) · 898 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "gerust"
version = "0.0.3"
edition = "2021"
authors = ["Marco Otte-Witte <[email protected]>"]
description = "Gerust takes care of the accidental complexity of Rust backend projects so you can stay focused on what matters."
categories = ["web-programming"]
keywords = ["backend", "axum"]
homepage = "https://gerust.rs"
repository = "https://github.com/mainmatter/gerust"
license = "MIT"
include = ["blueprint", "src", "build.rs"]
exclude = ["site"]
[[bin]]
name = "gerust"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4.4", features = ["cargo"] }
cargo-generate = "0.22.1"
include_dir = "0.7"
tokio = { version = "1.34", features = ["full"] }
[dev-dependencies]
insta = "1.38"
[build-dependencies]
vergen = { version = "9.0.4", features = ["build"] }
vergen-git2 = { version = "1.0.2", features = ["build"] }
[profile.release]
lto = true