-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 1018 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
[package]
name = "arno"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "arno"
test = false
bench = false
[profile.dev]
# Language items are special functions and types that are required internally by the compiler.
# For example, the Copy trait is a language item that tells the compiler which types have copy
# semantics.
# The eh_personality language item marks a function that is used for implementing stack unwinding.
# By default, Rust uses unwinding to run the destructors of all live stack variables in case of a
# panic. This ensures that all used memory is freed and allows the parent thread to catch the panic
# and continue execution. Unwinding, however, is a complicated process and requires some OS-specific
# libraries (e.g. libunwind on Linux or structured exception handling on Windows), so we'll just
# disable it.
# NOTE : This disables the generation of unwinding symbol information and thus considerably reduces
# binary size.
panic = "abort"
[profile.release]
panic = "abort"
[dependencies]