-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
44 lines (35 loc) · 980 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
35
36
37
38
39
40
41
42
43
[package]
name = "mini-calc"
version = "3.3.3"
license = "GPL-3.0-or-later"
description = "A Fully-Featured Configurable (mini) Rust Calculator"
homepage = "https://calc.charlotte-thomas.me"
repository = "https://github.com/vanilla-extract/calc"
readme = "README.md"
edition = "2021"
exclude = [
"docs/*",
"manual/*",
"manual.pdf"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi_term = "0.12.1"
linefeed = "0.6"
confy = "0.5.1"
gnuplot = "0.0.39"
serde = { version = "1.0.192", features = ["derive"] }
atty = "0.2"
[package.metadata.deb]
name = "mini-calc"
maintainer = "Charlotte Thomas"
copyright = "GPLv3"
license-file = "LICENSE"
[package.metadata.generate-rpm]
name = "mini-calc"
license = "GPLv3"
assets = [{source="target/release/mini-calc", dest="/usr/bin/mini-calc", mode = "755"}]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"