mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 06:22:28 +03:00
c30ac3ba62
Previously, the attempt was made to enable only those `tokio` features that are actually used. However, due to default-features still being enabled and `tauri` using the `full` feature, for most intents and purposes that wasn't effective. Now default features are disabled, and `full` isn't used anymore, forcing all crates to mention the exact features they need. Note that `tracing` is missing here, as it wasn't effective previously without the `--cfg tokio_unstable` option also being specified as rustflag.
36 lines
667 B
TOML
36 lines
667 B
TOML
[package]
|
|
name = "gitbutler-watcher"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
gitbutler-analytics.workspace = true
|
|
gitbutler-core.workspace = true
|
|
thiserror.workspace = true
|
|
anyhow = "1.0.81"
|
|
futures = "0.3.30"
|
|
tokio = { workspace = true, features = [ "macros" ] }
|
|
tokio-util = "0.7.10"
|
|
tracing = "0.1.40"
|
|
|
|
backoff = "0.4.0"
|
|
notify = { version = "6.0.1" }
|
|
notify-debouncer-full = "0.3.1"
|
|
crossbeam-channel = "0.5.12"
|
|
itertools = "0.12"
|
|
|
|
[dev-dependencies]
|
|
gitbutler-testsupport.workspace = true
|
|
git2.workspace = true
|
|
tempfile = "3.10"
|
|
once_cell = "1.19"
|
|
|
|
[lints.clippy]
|
|
all = "deny"
|
|
perf = "deny"
|
|
correctness = "deny"
|