-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 1.04 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
[package]
name = "squiid"
version = "1.1.3"
edition = "2021"
description = "Squiid is a modular calculator written in Rust. It is currently very early in development but it is intended to be the successor to ImaginaryInfinity Calculator"
repository = "https://gitlab.com/ImaginaryInfinity/squiid-calculator/squiid"
license = "GPL-3.0"
authors = [
"Connor Sample <tabulatejarl8@gmail.com>",
"Finian Wright <turbowafflz@gmail.com>",
]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.19", features = ["cargo"] }
crossterm = "0.28.1"
lazy_static = "1.4.0"
nng = "1.0.1"
ratatui = "0.28.0"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
squiid-engine = { path = "./squiid-engine", features = [
'disable-crash-reports',
] }
squiid-parser = { path = "./squiid-parser" }
unicode-width = "0.1.10"
[target.'cfg(target_os = "windows")'.build-dependencies]
winresource = "0.1.15"
[profile.release]
strip = "symbols"
lto = true