-
Notifications
You must be signed in to change notification settings - Fork 49
/
Cargo.toml
59 lines (50 loc) · 2.07 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
resolver = "2"
members = ["crates/*"]
# Global settings for all crates should be defined here
[workspace.package]
# Update using `cargo set-version -p bitwarden <new-version>`
version = "1.0.0"
authors = ["Bitwarden Inc"]
edition = "2021"
# Note: Changing rust-version should be considered a breaking change
rust-version = "1.75"
homepage = "https://bitwarden.com"
repository = "https://github.com/bitwarden/sdk"
license-file = "LICENSE"
keywords = ["bitwarden"]
# Define dependencies that are expected to be consistent across all crates
[workspace.dependencies]
bitwarden = { path = "crates/bitwarden", version = "=1.0.0" }
bitwarden-cli = { version = "=1.0.0" }
bitwarden-core = { version = "=1.0.0" }
bitwarden-crypto = { version = "=1.0.0" }
bitwarden-generators = { version = "=1.0.0" }
bitwarden-sm = { version = "=1.0.0" }
log = "0.4.20"
schemars = { version = ">=0.8.9, <0.9", features = ["uuid1", "chrono"] }
tokio = { version = "1.36.0", features = ["macros"] }
[workspace.lints.clippy]
unused_async = "deny"
unwrap_used = "deny"
# Compile all dependencies with some optimizations when building this crate on debug
# This slows down clean builds by about 50%, but the resulting binaries can be orders of magnitude faster
# As clean builds won't occur very often, this won't slow down the development process
[profile.dev.package."*"]
opt-level = 2
# Turn on a small amount of optimisation in development mode. This might interfere when trying to use a debugger
# if the compiler decides to optimize some code away, if that's the case, it can be set to 0 or commented out
[profile.dev]
opt-level = 1
# Turn on LTO on release mode
[profile.release]
lto = "thin"
codegen-units = 1
# Turn off LTO on release mode for windows
# This is a workaround until this is fixed: https://github.com/rustls/rustls-platform-verifier/issues/141
[profile.release-windows]
inherits = "release"
lto = "off"
# Stripping the binary reduces the size by ~30%, but the stacktraces won't be usable anymore.
# This is fine as long as we don't have any unhandled panics, but let's keep it disabled for now
# strip = true