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.
27 lines
540 B
TOML
27 lines
540 B
TOML
[package]
|
|
name = "gitbutler-analytics"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
doctest = false
|
|
test = false
|
|
|
|
[dependencies]
|
|
gitbutler-core.workspace = true
|
|
thiserror.workspace = true
|
|
tracing = "0.1.40"
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json = { version = "1.0", features = [ "std", "arbitrary_precision" ] }
|
|
|
|
async-trait = "0.1.79"
|
|
chrono = { version = "0.4.37", features = ["serde"] }
|
|
reqwest = { version = "0.12.2", features = ["json"] }
|
|
|
|
[lints.clippy]
|
|
all = "deny"
|
|
perf = "deny"
|
|
correctness = "deny"
|