aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: bfa594f62270cdcd7d60d3f9c10bcf726340a909 (plain)
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
40
41
42
43
44
[package]
name = "dev-suite"
version = "0.1.0"
authors = [
  "Michael Gattozzi <mgattozzi@gmail.com>",
  "Katharina Fey <kookie@spacekookie.de>",
]
edition = "2018"
license = "GPL-3.0"

[[bin]]
name = "ds"
path = "src/main.rs"

[dependencies]
anyhow = "1.0"
configamajig = { path = "configamajig" }
dialoguer = "0.5"
dirs = "2.0"
paw = "1.0"
reqwest = { version = "0.10.0", features = ["blocking"] }
shared = { path = "shared" }
structopt = { version = "0.3", features = ["paw"] }
which = "3.1"

[workspace]
members = [
  "configamajig",
  "shared",
  "ticket",
  "hooked",
  "libgitmail",
]

[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'
incremental = false
overflow-checks = false