mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 13:26:16 +03:00
22 lines
661 B
TOML
22 lines
661 B
TOML
[workspace]
|
|
members = [
|
|
"gitbutler-app",
|
|
"gitbutler-changeset",
|
|
"gitbutler-git",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
git2 = { version = "0.18.2", features = ["vendored-openssl", "vendored-libgit2"] }
|
|
uuid = "1.7.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0.57"
|
|
rusqlite = { version = "0.29.0", features = [ "bundled", "blob" ] }
|
|
tokio = { version = "1.36.0" }
|
|
|
|
[profile.release]
|
|
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
|
|
lto = true # Enables link to optimizations
|
|
opt-level = "s" # Optimize for binary size
|
|
debug = true # Enable debug symbols, for sentry
|