forked from SofairOfficial/sleppa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (30 loc) · 1.09 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
36
37
[workspace]
members = ["crates/*"]
# Global package attributes
[workspace.package]
authors = ["Sofair Contributors <[email protected]>"]
license = "MIT or Apache-2.0"
documentation = "https://github.com/SofairOfficial/sleppa"
homepage = "https://github.com/SofairOfficial/sleppa"
repository = "https://github.com/SofairOfficial/sleppa"
edition = "2021"
rust-version = "1.69"
# Global dependencies
[workspace.dependencies]
# Local dependencies
sleppa_changelog = { version = "0.1.0", path = "crates/sleppa_changelog" }
sleppa_code_archiver = { version = "0.1.0", path = "crates/sleppa_code_archiver" }
sleppa_commit_analyzer = { version = "0.1.0", path = "crates/sleppa_commit_analyzer" }
sleppa_configuration = { version = "0.1.0", path = "crates/sleppa_configuration" }
sleppa_primitives = { version = "0.1.0", path = "crates/sleppa_primitives" }
sleppa_versioner = { version = "0.1.0", path = "crates/sleppa_versioner" }
# Errors processing
thiserror = { version = "^1.0" }
[profile.release]
lto = true
codegen-units = 1
incremental = false
[profile.bench]
lto = true
codegen-units = 1
incremental = false