-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (42 loc) · 825 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
44
45
46
47
48
49
# Workspace
[workspace]
members = [
"api"
]
default-members = [
"api"
]
resolver="2"
# Package
[workspace.package]
authors = ["Stanislav Mikhailov <[email protected]>"]
edition = "2021"
version = "1.0.5"
rust-version = "1.67.0"
license-file = "LICENSE"
repository = "https://github.com/xavetar/COXave"
description = "Instruments for codings"
# Dependencies
[workspace.dependencies]
COXave = { version = "=1.0.5", path = "api", default-features = false }
# Profiles
[profile.dev]
lto = "off"
debug = true
strip = false
opt-level = 0
panic = "abort"
incremental = false
codegen-units = 256
overflow-checks = true
debug-assertions = true
[profile.release]
lto = "fat"
strip = true
debug = false
opt-level = 3
panic = "abort"
incremental = false
codegen-units = 256
overflow-checks = true
debug-assertions = false