-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 1.1 KB
/
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
35
36
37
38
39
[package]
name = "servust"
version = "0.2.6"
edition = "2021"
authors = ["Priyadarshan Giri <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/giripriyadarshan/servust"
homepage = "https://github.com/giripriyadarshan/servust"
description = "Rust multiple backend-server template generator"
keywords = ["server", "database", "orm", "template", "boilerplate"]
categories = ["command-line-interface","command-line-utilities", "development-tools"]
exclude = ["target/**",".gitignore",".github/**","LICENSE-MIT",".idea/**"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0.29", features = ["derive"] }
console = "0.15.2"
indicatif = "0.17.2"
reqwest = "0.11.13"
tokio = { version = "1.22.0", features = ["full"] }
[[bin]]
name = "servust"
path = "src/main.rs"
[profile.release]
strip = true
panic = 'abort'
codegen-units = 1
lto = true
[package.metadata.bundle]
name = "Servust"
identifier = "io.github.giripriyadarshan.servust"
# icon = ["32x32.png", "128x128.png", "[email protected]"]