-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (31 loc) · 1.05 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 = "oscd"
version = "0.1.11"
edition = "2021"
authors = ["karnpapon <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/karnpapon/oscd"
homepage = "https://github.com/karnpapon/oscd"
description = "a simple interactive OSC (Open Sound Control) debugger for terminal"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "oscd"
path = "src/main.rs"
[dependencies]
termion = { git = "https://gitlab.redox-os.org/Jezza/termion.git", branch = "windows-support", version = "1.5.5" }
colored = "2"
inquire = { version = "0.2.1" }
rosc = "0.8.1"
clap = "3.2.15"
nom = "7.1.1"
rustyline = "11.0.0"
nom_locate = "4.0.0"
rustyline-derive = "0.8.0"
tabled = "0.17.0"
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "z" # Optimize for binary size
strip = true # Remove debug symbols