-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
26 lines (22 loc) · 901 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
[package]
name = "data2sound"
description = "A library to convert data to sound, and vice versa, supports WASI (dependency-free)"
version = "0.2.2"
rust-version = "1.56.1"
edition = "2021"
authors = ["TheAwiteb <awiteb@hotmail.com>"]
repository = "https://github.com/TheAwiteb/data2sound"
documentation = "https://docs.rs/data2sound"
license = "MIT"
readme = "README.md"
keywords = ["Audio", "CLI", "WAV", "Encode", "Decode"]
categories = ["multimedia::audio"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[profile.release]
opt-level = 's' # I don't know what this does, but it's make the binary smaller and faster, so I'll keep it.
lto = true # Link-time optimization.
debug = false # Disable debug info.
codegen-units = 1 # Use a single codegen unit.
panic = "abort" # Use abort instead of unwind.
strip = true # Strip symbols.