git.delta.rocks / jrsonnet / refs/commits / 8058495d74b6

difftreelog

style add taplo config

Lach2025-04-27parent: #426fcb5.patch.diff
in: trunk

6 files changed

modifiedCargo.tomldiffbeforeafterboth
6package.rust-version = "1.82.0"6package.rust-version = "1.82.0"
77
8[workspace.dependencies]8[workspace.dependencies]
9nixlike = { path = "./crates/nixlike" }
10better-command = { path = "./crates/better-command" }9better-command = { path = "./crates/better-command" }
11fleet-shared = { path = "./crates/fleet-shared" }10fleet-shared = { path = "./crates/fleet-shared" }
12nix-eval = { path = "./crates/nix-eval" }11nix-eval = { path = "./crates/nix-eval" }
13
14tokio = { version = "1.36.0", features = [
15 "fs",
16 "rt",
17 "macros",
18 "sync",
19 "time",
20 "rt-multi-thread",
21] }
22tokio-util = { version = "0.7.11", features = ["codec"] }
23clap = { version = "4.5", features = ["derive", "env", "wrap_help", "unicode"] }12nixlike = { path = "./crates/nixlike" }
24clap_complete = "4.5"13
25age = { version = "0.11", features = ["ssh"] }14age = { version = "0.11", features = ["ssh"] }
26anyhow = "1.0"15anyhow = "1.0"
16clap = { version = "4.5", features = ["derive", "env", "unicode", "wrap_help"] }
27tracing = "0.1"17clap_complete = "4.5"
28tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }18nix = { version = "0.29.0", features = ["fs", "user"] }
29serde = { version = "1.0", features = ["derive"] }19serde = { version = "1.0", features = ["derive"] }
30serde_json = "1.0"20serde_json = "1.0"
31tempfile = "3.10"21tempfile = "3.10"
22thiserror = "2.0.3"
32nix = { version = "0.29.0", features = ["user", "fs"] }23tokio = { version = "1.36.0", features = ["fs", "macros", "rt", "rt-multi-thread", "sync", "time"] }
24tokio-util = { version = "0.7.11", features = ["codec"] }
25tracing = "0.1"
33thiserror = "2.0.3"26tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
3427
modifiedcrates/nix-eval/Cargo.tomldiffbeforeafterboth
8[dependencies]8[dependencies]
9anyhow.workspace = true9anyhow.workspace = true
10better-command.workspace = true10better-command.workspace = true
11futures = "0.3.30"
12itertools = "0.13.0"
13nixlike.workspace = true11nixlike.workspace = true
14r2d2 = "0.8.10"
15regex = "1.10.6"
16serde = { workspace = true, features = ["derive"] }12serde = { workspace = true, features = ["derive"] }
17serde_json.workspace = true13serde_json.workspace = true
18thiserror.workspace = true14thiserror.workspace = true
19tokio = { workspace = true, features = ["process", "io-util"] }15tokio = { workspace = true, features = ["io-util", "process"] }
20tokio-util.workspace = true16tokio-util.workspace = true
21tracing.workspace = true17tracing.workspace = true
18
19futures = "0.3.30"
20itertools = "0.13.0"
21r2d2 = "0.8.10"
22regex = "1.10.6"
22unindent = "0.2.3"23unindent = "0.2.3"
2324
24# [build-dependencies]25# [build-dependencies]
modifiedcrates/nix-native-eval/Cargo.tomldiffbeforeafterboth

no syntactic changes

modifiedcrates/nixlike/Cargo.tomldiffbeforeafterboth
9alejandra = { git = "https://github.com/kamadorueda/alejandra" }10alejandra = { git = "https://github.com/kamadorueda/alejandra" }
10linked-hash-map = "0.5.6"11linked-hash-map = "0.5.6"
11peg = "0.8.2"12peg = "0.8.2"
13ron = "0.8.1"
12serde = "1.0.196"14serde = "1.0.196"
15serde-transcode = "1.1.1"
13serde_json = "1.0.113"16serde_json = "1.0.113"
14ron = "0.8.1"
15serde-transcode = "1.1.1"
1617
modifiedcrates/nixlike/fuzz/Cargo.tomldiffbeforeafterboth
12[dependencies]12[dependencies]
13libfuzzer-sys = "0.4"13libfuzzer-sys = "0.4"
14
15[dependencies.nixlike]14nixlike.path = ".."
16path = ".."
1715
18# Prevent this from interfering with workspaces16# Prevent this from interfering with workspaces
19[workspace]17[workspace]
addedtaplo.tomldiffbeforeafterboth

no changes