update to latest pijul
[?]
Jun 24, 2025, 6:07 PM
DXAYDIMQ7BYEI3ASOHKADQWSMVJOA2ZVNEL2TDENJCJKX2U4GMWACDependencies
- [2]
6YZAVBWUInitial commit - [3]
KLR5FRIBadd fs state read/write of repos - [4]
IQDCHWCPload a pijul repo - [5]
SWWE2R6Mdisplay basic repo stuff - [6]
UB2ITZJSrefresh changed files on FS changes - [7]
EC3TVL4Xadd untracked files - [8]
KT5UYXGKfix selection after adding file, add changed file diffs - [9]
YBJRDOTCmake all repo actions async - [10]
2VUX5BTDload identity - [11]
A5YBC77Vrecord! - [12]
PTFDJ567add untracked files encoding - [13]
6SW7UVSHupdate iced version - [14]
OQ6HSAWHshow record log - [15]
WI2BVQ6Jrm client lib crate - [16]
3SYSJKYLadd app icon - [17]
WGID4LS4absolutely slayed testing with iced task - [18]
VCNKFNUFapp init test - [19]
UF5NJKAStest load repo - [20]
SWDPAGF6test channel name - [21]
2VO67NP7better name - [22]
FL2ULDJNtest record - [23]
2LWMGRUMtest diff - [24]
QYDWH7KBtest add and rm - [25]
B6YUTY3Qtest untracked files - [26]
F542TMBEtest log - [27]
SGHF5QCVcargo update - [28]
W7IUT3ZVstart recording impl - [29]
OC6DLIZ3test record when nothing to record - [30]
KQ3P3QRLupdate comments - [31]
VOFP2YNQprettify - [32]
ONRCENKTrm unnecessary state from repo's internal state - [33]
4WO3ZJM2show untracked files' contents - [34]
V55EAIWQadd src file LRU cache - [35]
JE44NYHMdisplay log files diffs - [36]
NWJD6VM6mv libflowers libflorescence - [37]
CALXOZXAflatten crates dir - [38]
5FVZF7XXtest changed files - [39]
KAC6AYWXfix test-log features - [40]
I56UGW7Umake record test, fix log update - [41]
I2AG42PAnew cols layout - [42]
23SFYK4Qbig view refactor into a new crate
Change contents
- edit in libflorescence/src/testing.rs at line 4
use chrono::Utc; - edit in libflorescence/src/testing.rs at line 5
use jiff::Timestamp; - replacement in libflorescence/src/testing.rs at line 52
last_modified: Utc::now(),last_modified: Timestamp::now(), - replacement in libflorescence/src/testing.rs at line 81
let (internal, _state) = repo::load(repo_dir).unwrap();let (internal, _state) = repo::load(&repo_dir).unwrap(); - replacement in libflorescence/src/testing.rs at line 103
let repo = Repository::init(Some(dir), None, None).unwrap();let repo = Repository::init(Some(&dir), None, None).unwrap(); - replacement in libflorescence/src/repo.rs at line 193
match spawn_blocking(move || load(path)).await.unwrap() {match spawn_blocking(move || load(&path)).await.unwrap() { - replacement in libflorescence/src/repo.rs at line 276
pub(crate) fn load(path: PathBuf) -> Result<(InternalState, State), LoadError> {match std::fs::exists(&path) {pub(crate) fn load(path: &Path) -> Result<(InternalState, State), LoadError> {match std::fs::exists(path) { - replacement in libflorescence/src/repo.rs at line 393
let timestamp = Utc::now();let timestamp = Timestamp::now(); - replacement in libflorescence/src/repo/test.rs at line 21
repo::load(dir.path().join("howdoyouopensomethingthatdoesntexist"));repo::load(&dir.path().join("howdoyouopensomethingthatdoesntexist")); - replacement in libflorescence/src/repo/test.rs at line 29
let result = repo::load(dir.path().to_path_buf());let result = repo::load(dir.path()); - replacement in libflorescence/src/repo/test.rs at line 45
let result = repo::load(repo.rootdir.path().join(subdir).to_path_buf());let result = repo::load(&repo.rootdir.path().join(subdir)); - replacement in libflorescence/src/repo/test.rs at line 55
let (_internal, state) = repo::load(repo_path.clone()).unwrap();let (_internal, state) = repo::load(&repo_path).unwrap(); - replacement in libflorescence/src/repo/test.rs at line 83
let mut repo = pijul::Repository::find_root(Some(repo_path)).unwrap();let mut repo = pijul::Repository::find_root(Some(&repo_path)).unwrap(); - replacement in libflorescence/src/repo/test.rs at line 95
let (internal, _state) = repo::load(repo_path.clone()).unwrap();let (internal, _state) = repo::load(&repo_path).unwrap(); - replacement in libflorescence/src/repo/test.rs at line 116
let (internal, _state) = repo::load(repo_path.clone()).unwrap();let (internal, _state) = repo::load(&repo_path).unwrap(); - replacement in libflorescence/src/repo/test.rs at line 146
let (internal, _state) = repo::load(repo_path.clone()).unwrap();let (internal, _state) = repo::load(&repo_path).unwrap(); - replacement in libflorescence/src/repo/test.rs at line 164
let (mut internal, _state) = repo::load(repo_path.clone()).unwrap();let (mut internal, _state) = repo::load(&repo_path).unwrap(); - replacement in libflorescence/src/repo/test.rs at line 192
let (internal, _state) = repo::load(repo_path.clone()).unwrap();let (internal, _state) = repo::load(&repo_path).unwrap(); - edit in libflorescence/src/prelude.rs at line 1
#[doc(inline)]pub use chrono::{DateTime, Utc}; - edit in libflorescence/src/prelude.rs at line 3
#[doc(inline)]pub use jiff::Timestamp; - edit in libflorescence/Cargo.toml at line 15
"chrono/std", - edit in libflorescence/Cargo.toml at line 26
workspace = true[dependencies.chrono] - edit in libflorescence/Cargo.toml at line 27
default-features = false - edit in libflorescence/Cargo.toml at line 36
[dependencies.jiff]workspace = true - edit in Cargo.toml at line 27
[workspace.dependencies.chrono]version = "0.4"default-features = false - edit in Cargo.toml at line 45
[workspace.dependencies.jiff]version = "0.2" - edit in Cargo.lock at line 56
name = "aes"version = "0.8.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"dependencies = ["cfg-if","cipher 0.4.4","cpufeatures",][[package]] - edit in Cargo.lock at line 112
[[package]]name = "android-tzdata"version = "0.1.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - edit in Cargo.lock at line 127
dependencies = ["backtrace",] - replacement in Cargo.lock at line 178
"async-fs 2.1.2","async-fs", - replacement in Cargo.lock at line 187
"zbus 5.7.1","zbus", - edit in Cargo.lock at line 195[18.4851]→[18.4851:4864](∅→∅),[13.841]→[10.1417:1662](∅→∅),[18.4864]→[10.1417:1662](∅→∅),[10.1417]→[10.1417:1662](∅→∅),[10.1662]→[2.7655:7657](∅→∅),[2.7655]→[2.7655:7657](∅→∅)
[[package]]name = "async-broadcast"version = "0.5.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"dependencies = ["event-listener 2.5.3","futures-core",] - replacement in Cargo.lock at line 239
"fastrand 2.3.0","futures-lite 2.6.0","fastrand","futures-lite", - edit in Cargo.lock at line 262[10.1785]→[10.1785:2033](∅→∅),[10.2033]→[3.6842:6857](∅→∅),[3.6842]→[3.6842:6857](∅→∅),[3.6857]→[2.8569:8587](∅→∅),[2.8569]→[2.8569:8587](∅→∅)
version = "1.6.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"dependencies = ["async-lock 2.8.0","autocfg","blocking","futures-lite 1.13.0",][[package]]name = "async-fs" - replacement in Cargo.lock at line 266
"async-lock 3.4.0","async-lock", - replacement in Cargo.lock at line 268
"futures-lite 2.6.0","futures-lite", - replacement in Cargo.lock at line 279
"async-io 2.4.1","async-lock 3.4.0","async-io","async-lock", - replacement in Cargo.lock at line 282
"futures-lite 2.6.0","futures-lite", - edit in Cargo.lock at line 288
version = "1.13.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"dependencies = ["async-lock 2.8.0","autocfg","cfg-if","concurrent-queue","futures-lite 1.13.0","log","parking","polling 2.8.0","rustix 0.37.28","slab","socket2 0.4.10","waker-fn",][[package]]name = "async-io" - replacement in Cargo.lock at line 292
"async-lock 3.4.0","async-lock", - replacement in Cargo.lock at line 296
"futures-lite 2.6.0","futures-lite", - replacement in Cargo.lock at line 298
"polling 3.8.0","polling", - edit in Cargo.lock at line 303
][[package]]name = "async-lock"version = "2.8.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"dependencies = ["event-listener 2.5.3", - replacement in Cargo.lock at line 322
"async-io 2.4.1","async-io", - replacement in Cargo.lock at line 324
"futures-lite 2.6.0","futures-lite", - edit in Cargo.lock at line 329[10.2866]→[10.2866:3175](∅→∅),[10.3175]→[13.1859:1878](∅→∅),[13.1878]→[10.3194:3217](∅→∅),[10.3194]→[10.3194:3217](∅→∅),[10.3217]→[2.9460:9498](∅→∅),[2.9460]→[2.9460:9498](∅→∅)
version = "1.8.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"dependencies = ["async-io 1.13.0","async-lock 2.8.0","async-signal","blocking","cfg-if","event-listener 3.1.0","futures-lite 1.13.0","rustix 0.38.44","windows-sys 0.48.0",][[package]]name = "async-process" - replacement in Cargo.lock at line 334
"async-io 2.4.1","async-lock 3.4.0","async-io","async-lock", - replacement in Cargo.lock at line 341
"futures-lite 2.6.0","futures-lite", - replacement in Cargo.lock at line 363
"async-io 2.4.1","async-lock 3.4.0","async-io","async-lock", - replacement in Cargo.lock at line 383
"async-io 2.4.1","async-lock 3.4.0","async-io","async-lock", - replacement in Cargo.lock at line 389
"futures-lite 2.6.0","futures-lite", - replacement in Cargo.lock at line 482
version = "0.6.2"version = "0.10.0" - replacement in Cargo.lock at line 484
checksum = "7c38c03b9506bd92bf1ef50665a81eda156f615438f7654bffba58907e6149d7"checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2" - replacement in Cargo.lock at line 487
"crypto-mac","pbkdf2 0.8.0","sha2 0.9.9","zeroize","pbkdf2 0.12.2","sha2 0.10.9", - replacement in Cargo.lock at line 591
"block-padding 0.2.1","block-padding", - edit in Cargo.lock at line 602
name = "block-padding"version = "0.3.3"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"dependencies = ["generic-array",][[package]] - replacement in Cargo.lock at line 619
"futures-lite 2.6.0","futures-lite", - replacement in Cargo.lock at line 625
version = "0.8.0"version = "0.9.1" - replacement in Cargo.lock at line 627
checksum = "fe3ff3fc1de48c1ac2e3341c4df38b0d1bfb8fdf04632a187c8b75aaa319a7ab"checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7" - replacement in Cargo.lock at line 630
"cipher 0.3.0","opaque-debug","cipher 0.4.4", - replacement in Cargo.lock at line 707
"polling 3.8.0","polling", - edit in Cargo.lock at line 732
name = "cbc"version = "0.1.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"dependencies = ["cipher 0.4.4",][[package]] - edit in Cargo.lock at line 779[4.4640]→[4.4640:4671](∅→∅),[4.4671]→[27.1928:1947](∅→∅),[27.1947]→[4.4690:4755](∅→∅),[13.3899]→[4.4690:4755](∅→∅),[4.4690]→[4.4690:4755](∅→∅),[4.4755]→[27.1948:2026](∅→∅),[27.2026]→[4.4833:4941](∅→∅),[13.3978]→[4.4833:4941](∅→∅),[4.4833]→[4.4833:4941](∅→∅),[4.4941]→[13.3979:3996](∅→∅)
][[package]]name = "chrono"version = "0.4.41"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"dependencies = ["android-tzdata","iana-time-zone","js-sys","num-traits","serde","wasm-bindgen","windows-link", - replacement in Cargo.lock at line 1143
name = "dateparser"version = "0.1.8"name = "dbus"version = "0.9.7" - replacement in Cargo.lock at line 1146
checksum = "c9e12a21fe97a29f5ae9cb6770419711f180d3715a039b500b5ff7ab45bb00c4"checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" - replacement in Cargo.lock at line 1148
"anyhow","chrono","lazy_static","regex","libc","libdbus-sys","winapi",][[package]]name = "dbus-secret-service"version = "4.0.3"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "b42a16374481d92aed73ae45b1f120207d8e71d24fb89f357fadbd8f946fd84b"dependencies = ["dbus","futures-util","num","once_cell","rand 0.8.5", - replacement in Cargo.lock at line 1374
version = "1.0.0"version = "2.0.0" - replacement in Cargo.lock at line 1376
checksum = "de78e66ac9061e030587b2a2e75cc88f22304913c907b11307bca737141230cb"checksum = "97af9b5f014e228b33e77d75ee0e6e87960124f0f4b16337b586a6bec91867b1" - replacement in Cargo.lock at line 1378
"heck 0.4.1","proc-macro-error","heck","proc-macro2","proc-macro2-diagnostics", - edit in Cargo.lock at line 1409
name = "edit"version = "0.1.5"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "f364860e764787163c8c8f58231003839be31276e821e2ad2092ddf496b1aa09"dependencies = ["tempfile","which",][[package]] - edit in Cargo.lock at line 1522
[[package]]name = "event-listener"version = "3.1.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"dependencies = ["concurrent-queue","parking","pin-project-lite",] - edit in Cargo.lock at line 1557[16.3735]→[16.3735:3750](∅→∅),[16.3750]→[2.29280:29298](∅→∅),[2.29280]→[2.29280:29298](∅→∅),[2.29298]→[10.7551:7741](∅→∅)
][[package]]name = "fastrand"version = "1.9.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"dependencies = ["instant", - edit in Cargo.lock at line 1767
[[package]]name = "futures-lite"version = "1.13.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"dependencies = ["fastrand 1.9.0","futures-core","futures-io","memchr","parking","pin-project-lite","waker-fn",] - replacement in Cargo.lock at line 1774
"fastrand 2.3.0","fastrand", - replacement in Cargo.lock at line 2005
"hashbrown 0.15.4","hashbrown", - edit in Cargo.lock at line 2036
[[package]]name = "hashbrown"version = "0.12.3"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" - edit in Cargo.lock at line 2048[10.9106]→[10.9106:9267](∅→∅),[10.9267]→[2.38423:38436](∅→∅),[2.38423]→[2.38423:38436](∅→∅),[2.38436]→[8.7970:7984](∅→∅)
version = "0.4.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"[[package]]name = "heck" - edit in Cargo.lock at line 2051
[[package]]name = "hermit-abi"version = "0.3.9"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" - edit in Cargo.lock at line 2069
[[package]]name = "hkdf"version = "0.12.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"dependencies = ["hmac 0.12.1",] - edit in Cargo.lock at line 2081[4.10507]→[10.9493:9719](∅→∅),[10.9719]→[4.10507:10725](∅→∅),[4.10507]→[4.10507:10725](∅→∅),[4.10725]→[2.39192:39205](∅→∅),[2.39192]→[2.39192:39205](∅→∅),[2.39205]→[4.10726:10750](∅→∅),[4.10750]→[13.7904:7923](∅→∅),[13.7923]→[4.10769:10834](∅→∅),[4.10769]→[4.10769:10834](∅→∅),[4.10834]→[13.7924:8002](∅→∅),[13.8002]→[4.10912:11019](∅→∅),[4.10912]→[4.10912:11019](∅→∅),[4.11019]→[13.8003:8011](∅→∅),[13.8011]→[4.11019:11036](∅→∅),[4.11019]→[4.11019:11036](∅→∅),[4.11036]→[27.4186:4210](∅→∅),[27.4210]→[4.11060:11305](∅→∅),[13.8036]→[4.11060:11305](∅→∅),[4.11060]→[4.11060:11305](∅→∅)
name = "hmac"version = "0.12.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"dependencies = ["digest 0.10.7",][[package]]name = "home"version = "0.5.11"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"dependencies = ["windows-sys 0.59.0",][[package]]name = "iana-time-zone"version = "0.1.63"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"dependencies = ["android_system_properties","core-foundation-sys","iana-time-zone-haiku","js-sys","log","wasm-bindgen","windows-core 0.61.2",][[package]]name = "iana-time-zone-haiku"version = "0.1.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"dependencies = ["cc",][[package]] - edit in Cargo.lock at line 2368
version = "0.2.3"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"dependencies = ["matches","unicode-bidi","unicode-normalization",][[package]]name = "idna" - edit in Cargo.lock at line 2444
version = "1.9.3"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"dependencies = ["autocfg","hashbrown 0.12.3",][[package]]name = "indexmap" - replacement in Cargo.lock at line 2449
"hashbrown 0.15.4","hashbrown", - edit in Cargo.lock at line 2521
"block-padding 0.3.3", - edit in Cargo.lock at line 2542[16.5109]→[2.43030:43045](∅→∅),[27.5385]→[2.43030:43045](∅→∅),[2.43030]→[2.43030:43045](∅→∅),[2.43045]→[10.13878:14132](∅→∅)
][[package]]name = "io-lifetimes"version = "1.0.11"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"dependencies = ["hermit-abi 0.3.9","libc","windows-sys 0.48.0", - edit in Cargo.lock at line 2558
[[package]]name = "jiff"version = "0.2.15"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"dependencies = ["jiff-static","jiff-tzdb-platform","log","portable-atomic","portable-atomic-util","serde","windows-sys 0.59.0",] - edit in Cargo.lock at line 2575
name = "jiff-static"version = "0.2.15"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"dependencies = ["proc-macro2","quote","syn 2.0.102",][[package]]name = "jiff-tzdb"version = "0.1.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "c1283705eb0a21404d2bfd6eef2a7593d240bc42a0bdb39db0ad6fa2ec026524"[[package]]name = "jiff-tzdb-platform"version = "0.1.3"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"dependencies = ["jiff-tzdb",][[package]] - replacement in Cargo.lock at line 2659
version = "2.3.3"version = "3.6.2" - replacement in Cargo.lock at line 2661
checksum = "363387f0019d714aa60cc30ab4fe501a747f4c08fc58f069dd14be971bd495a0"checksum = "1961983669d57bdfe6c0f3ef8e4c229b5ef751afcc7d87e4271d2f71f6ccfa8b" - replacement in Cargo.lock at line 2664
"lazy_static","dbus-secret-service", - replacement in Cargo.lock at line 2666
"secret-service","security-framework","windows-sys 0.52.0","log","security-framework 2.11.1","security-framework 3.2.0","windows-sys 0.59.0", - edit in Cargo.lock at line 2745
[[package]]name = "libdbus-sys"version = "0.2.5"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72"dependencies = ["pkg-config",] - edit in Cargo.lock at line 2762
"chrono", - edit in Cargo.lock at line 2765
"jiff", - replacement in Cargo.lock at line 2767
"path-slash 0.2.1","path-slash", - replacement in Cargo.lock at line 2780
"toml_edit 0.22.27","toml_edit", - replacement in Cargo.lock at line 2815
"aes 0.7.5","aes", - replacement in Cargo.lock at line 2817
"bitflags 1.3.2","bitflags 2.9.1", - edit in Cargo.lock at line 2822
"cfg-if", - edit in Cargo.lock at line 2823
"chrono", - replacement in Cargo.lock at line 2831
"hmac 0.11.0","hmac", - replacement in Cargo.lock at line 2833
"lazy_static","jiff", - edit in Cargo.lock at line 2836
"memchr", - replacement in Cargo.lock at line 2837
"parking_lot 0.11.2","path-slash 0.1.5","parking_lot 0.12.4","path-slash", - replacement in Cargo.lock at line 2849
"thiserror 1.0.69","toml 0.5.11","thiserror 2.0.12","toml", - edit in Cargo.lock at line 2905[10.15100]→[10.15100:15261](∅→∅),[4.13207]→[2.45749:45785](∅→∅),[10.15261]→[2.45749:45785](∅→∅),[2.45749]→[2.45749:45785](∅→∅)
version = "0.3.8"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"[[package]]name = "linux-raw-sys" - edit in Cargo.lock at line 2995
name = "matches"version = "0.1.10"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"[[package]] - edit in Cargo.lock at line 3023
][[package]]name = "memoffset"version = "0.7.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"dependencies = ["autocfg", - replacement in Cargo.lock at line 3095
"indexmap 2.9.0","indexmap", - edit in Cargo.lock at line 3152
version = "0.26.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"dependencies = ["bitflags 1.3.2","cfg-if","libc","memoffset 0.7.1",][[package]]name = "nix" - replacement in Cargo.lock at line 3160
"memoffset 0.9.1","memoffset", - replacement in Cargo.lock at line 3323
"hermit-abi 0.5.2","hermit-abi", - replacement in Cargo.lock at line 3342
"proc-macro-crate 3.3.0","proc-macro-crate", - edit in Cargo.lock at line 3766
[[package]]name = "path-slash"version = "0.1.5"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "498a099351efa4becc6a19c72aa9270598e8fd274ca47052e37455241c88b696" - replacement in Cargo.lock at line 3781
"hmac 0.11.0","hmac", - edit in Cargo.lock at line 3793
][[package]]name = "pbkdf2"version = "0.12.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"dependencies = ["digest 0.10.7", - replacement in Cargo.lock at line 3812
version = "0.0.1"version = "1.0.0-beta.10" - edit in Cargo.lock at line 3817
"edit", - replacement in Cargo.lock at line 3820
"toml 0.5.11","toml", - replacement in Cargo.lock at line 3826
version = "0.0.1"version = "1.0.0-beta.10" - edit in Cargo.lock at line 3829
"chrono","dateparser", - edit in Cargo.lock at line 3830
"jiff", - edit in Cargo.lock at line 3836
"pijul-repository", - edit in Cargo.lock at line 3837
"serde_derive", - replacement in Cargo.lock at line 3839
"thiserror 1.0.69","thiserror 2.0.12", - replacement in Cargo.lock at line 3841
"toml 0.7.8","toml", - replacement in Cargo.lock at line 3848
version = "0.0.1"version = "1.0.0-beta.10" - edit in Cargo.lock at line 3853
"lazy_static", - replacement in Cargo.lock at line 3855
"thiserror 1.0.69","thiserror 2.0.12", - replacement in Cargo.lock at line 3860
version = "0.5.0"version = "1.0.0-beta.10" - replacement in Cargo.lock at line 3864
"regex","syn 1.0.109","syn 2.0.102", - replacement in Cargo.lock at line 3869
version = "0.0.1"version = "1.0.0-beta.10" - replacement in Cargo.lock at line 3876
"toml 0.7.8","toml", - replacement in Cargo.lock at line 3918
"fastrand 2.3.0","fastrand", - replacement in Cargo.lock at line 3935
"indexmap 2.9.0","indexmap", - edit in Cargo.lock at line 3956
version = "2.8.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"dependencies = ["autocfg","bitflags 1.3.2","cfg-if","concurrent-queue","libc","log","pin-project-lite","windows-sys 0.48.0",][[package]]name = "polling" - replacement in Cargo.lock at line 3962
"hermit-abi 0.5.2","hermit-abi", - edit in Cargo.lock at line 3974
[[package]]name = "portable-atomic-util"version = "0.2.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"dependencies = ["portable-atomic",] - edit in Cargo.lock at line 4016
version = "1.3.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"dependencies = ["once_cell","toml_edit 0.19.15",][[package]]name = "proc-macro-crate" - replacement in Cargo.lock at line 4020
"toml_edit 0.22.27","toml_edit", - replacement in Cargo.lock at line 4024
name = "proc-macro-error"version = "1.0.4"name = "proc-macro2"version = "1.0.95" - replacement in Cargo.lock at line 4027
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" - replacement in Cargo.lock at line 4029
"proc-macro-error-attr","proc-macro2","quote","syn 1.0.109","version_check","unicode-ident", - replacement in Cargo.lock at line 4033
name = "proc-macro-error-attr"version = "1.0.4"name = "proc-macro2-diagnostics"version = "0.10.1" - replacement in Cargo.lock at line 4036
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" - edit in Cargo.lock at line 4040
"syn 2.0.102", - edit in Cargo.lock at line 4042
"yansi", - edit in Cargo.lock at line 4046[2.63267]→[2.63267:63288](∅→∅),[2.63288]→[13.15611:15630](∅→∅),[13.15630]→[2.63307:63372](∅→∅),[2.63307]→[2.63307:63372](∅→∅),[2.63372]→[13.15631:15709](∅→∅),[13.15709]→[2.63450:63500](∅→∅),[2.63450]→[2.63450:63500](∅→∅)
name = "proc-macro2"version = "1.0.95"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"dependencies = ["unicode-ident",][[package]] - replacement in Cargo.lock at line 4379
version = "0.9.1"version = "0.10.2" - replacement in Cargo.lock at line 4381
checksum = "f8a29d87a652dc4d43c586328706bb5cdff211f3f39a530f240b53f7221dab8e"checksum = "7043b63bd0cd1aaa628e476b80e6d4023a3b50eb32789f2728908107bd0c793a" - edit in Cargo.lock at line 4409
[[package]]name = "rustix"version = "0.37.28"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "519165d378b97752ca44bbe15047d5d3409e875f39327546b42ac81d7e18c1b6"dependencies = ["bitflags 1.3.2","errno","io-lifetimes","libc","linux-raw-sys 0.3.8","windows-sys 0.48.0",] - replacement in Cargo.lock at line 4526
name = "secret-service"version = "3.1.0"name = "security-framework"version = "2.11.1" - replacement in Cargo.lock at line 4529
checksum = "b5204d39df37f06d1944935232fd2dfe05008def7ca599bf28c0800366c8a8f9"checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" - replacement in Cargo.lock at line 4531[10.21931]→[10.21931:22044](∅→∅),[10.22044]→[27.8916:8932](∅→∅),[27.8932]→[10.22060:22076](∅→∅),[10.22060]→[10.22060:22076](∅→∅)
"aes 0.8.4","cbc","futures-util","generic-array","hkdf","num","once_cell","rand 0.8.5","serde","sha2 0.10.9","zbus 3.15.2","bitflags 2.9.1","core-foundation 0.9.4","core-foundation-sys","libc","security-framework-sys", - replacement in Cargo.lock at line 4540
version = "2.11.1"version = "3.2.0" - replacement in Cargo.lock at line 4542
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" - replacement in Cargo.lock at line 4545
"core-foundation 0.9.4","core-foundation 0.10.1", - edit in Cargo.lock at line 4629
name = "sha1"version = "0.10.6"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"dependencies = ["cfg-if","cpufeatures","digest 0.10.7",][[package]] - edit in Cargo.lock at line 4784
version = "0.4.10"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"dependencies = ["libc","winapi",][[package]]name = "socket2" - replacement in Cargo.lock at line 4803
"fastrand 2.3.0","fastrand", - replacement in Cargo.lock at line 4875
"heck 0.5.0","heck", - replacement in Cargo.lock at line 4888
"heck 0.5.0","heck", - replacement in Cargo.lock at line 4989
"heck 0.5.0","heck", - replacement in Cargo.lock at line 4991
"toml 0.8.23","toml", - replacement in Cargo.lock at line 5007
"fastrand 2.3.0","fastrand", - replacement in Cargo.lock at line 5111
version = "0.21.0"version = "0.22.1" - replacement in Cargo.lock at line 5113
checksum = "a72cc51a2932b18d92f7289332d8564cec4a5014063722a9d3fdca52c5d8f5ab"checksum = "c43d59b13e4c08db0e379bced99bda596ac5ed33651d919bf3916d34ad4259bb" - replacement in Cargo.lock at line 5115
"aes 0.7.5","aes", - replacement in Cargo.lock at line 5124
"hmac 0.11.0","hmac", - replacement in Cargo.lock at line 5272
"socket2 0.5.10","socket2", - edit in Cargo.lock at line 5311
][[package]]name = "toml"version = "0.5.11"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"dependencies = ["indexmap 1.9.3","serde", - edit in Cargo.lock at line 5315[4.20108]→[4.20108:20286](∅→∅),[4.20286]→[13.21899:21918](∅→∅),[13.21918]→[4.20305:20373](∅→∅),[4.20305]→[4.20305:20373](∅→∅),[4.20373]→[3.9465:9467](∅→∅),[3.9465]→[3.9465:9467](∅→∅),[3.9467]→[2.78604:78617](∅→∅),[2.78604]→[2.78604:78617](∅→∅),[2.78617]→[16.10787:10801](∅→∅)
version = "0.7.8"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"dependencies = ["indexmap 2.9.0","serde","serde_spanned","toml_datetime","toml_edit 0.19.15",][[package]]name = "toml" - edit in Cargo.lock at line 5319
"indexmap", - replacement in Cargo.lock at line 5323
"toml_edit 0.22.27","toml_edit", - edit in Cargo.lock at line 5337[4.20408]→[4.20408:20588](∅→∅),[4.20588]→[13.21919:21938](∅→∅),[13.21938]→[4.20607:20671](∅→∅),[4.20607]→[4.20607:20671](∅→∅),[4.20671]→[3.9495:9497](∅→∅),[3.9495]→[3.9495:9497](∅→∅),[3.9497]→[2.78801:78833](∅→∅),[2.78801]→[2.78801:78833](∅→∅)
version = "0.19.15"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"dependencies = ["indexmap 2.9.0","serde","serde_spanned","toml_datetime","winnow 0.5.40",][[package]]name = "toml_edit" - replacement in Cargo.lock at line 5341
"indexmap 2.9.0","indexmap", - replacement in Cargo.lock at line 5346
"winnow 0.7.11","winnow", - replacement in Cargo.lock at line 5457
"memoffset 0.9.1","memoffset", - edit in Cargo.lock at line 5491
[[package]]name = "unicode-normalization"version = "0.1.24"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"dependencies = ["tinyvec",] - replacement in Cargo.lock at line 5535
"idna 1.0.3","idna", - replacement in Cargo.lock at line 5559
version = "0.15.0"version = "0.20.0" - replacement in Cargo.lock at line 5561
checksum = "f07b0a1390e01c0fc35ebb26b28ced33c9a3808f7f9fbe94d3cc01e233bfeed5"checksum = "43fb22e1a008ece370ce08a3e9e4447a910e92621bb49b85d6e48a45397e7cfa" - replacement in Cargo.lock at line 5563
"idna 0.2.3","lazy_static","idna","once_cell", - edit in Cargo.lock at line 5601
[[package]]name = "waker-fn"version = "1.2.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" - replacement in Cargo.lock at line 5896
"indexmap 2.9.0","indexmap", - replacement in Cargo.lock at line 5953
"windows-core 0.58.0","windows-core", - edit in Cargo.lock at line 5969[2.91187]→[4.21666:21893](∅→∅),[4.21893]→[13.25307:25326](∅→∅),[13.25326]→[4.21904:21919](∅→∅),[10.26893]→[4.21904:21919](∅→∅),[4.21904]→[4.21904:21919](∅→∅)
name = "which"version = "4.4.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"dependencies = ["either","home","once_cell","rustix 0.38.44",][[package]] - edit in Cargo.lock at line 5976
"web-sys", - replacement in Cargo.lock at line 6029
"windows-core 0.58.0","windows-core", - replacement in Cargo.lock at line 6039
"windows-implement 0.58.0","windows-interface 0.58.0","windows-result 0.2.0","windows-strings 0.1.0","windows-implement","windows-interface","windows-result","windows-strings", - edit in Cargo.lock at line 6044[2.92692]→[2.92692:92729](∅→∅),[2.92729]→[27.12660:12679](∅→∅),[27.12679]→[2.92748:92813](∅→∅),[13.25679]→[2.92748:92813](∅→∅),[2.92748]→[2.92748:92813](∅→∅),[2.92813]→[27.12680:12758](∅→∅),[27.12758]→[2.92891:92908](∅→∅),[13.25758]→[2.92891:92908](∅→∅),[2.92891]→[2.92891:92908](∅→∅),[2.92908]→[13.25759:25834](∅→∅),[13.25834]→[27.12759:12810](∅→∅)
][[package]]name = "windows-core"version = "0.61.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"dependencies = ["windows-implement 0.60.0","windows-interface 0.59.1","windows-link","windows-result 0.3.4","windows-strings 0.4.2", - edit in Cargo.lock at line 6058[13.25917]→[13.25917:26149](∅→∅),[13.26149]→[27.12828:12844](∅→∅),[27.12844]→[2.93273:93288](∅→∅),[4.22447]→[2.93273:93288](∅→∅),[13.26165]→[2.93273:93288](∅→∅),[2.93273]→[2.93273:93288](∅→∅)
name = "windows-implement"version = "0.60.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"dependencies = ["proc-macro2","quote","syn 2.0.102",][[package]] - edit in Cargo.lock at line 6062[2.93477]→[2.93477:93520](∅→∅),[2.93520]→[27.12845:12861](∅→∅),[27.12861]→[13.26182:26386](∅→∅),[13.26182]→[13.26182:26386](∅→∅)
dependencies = ["proc-macro2","quote","syn 2.0.102",][[package]]name = "windows-interface"version = "0.59.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" - edit in Cargo.lock at line 6069[2.93543]→[13.26446:26468](∅→∅),[13.26468]→[27.12879:12897](∅→∅),[27.12897]→[13.26486:26551](∅→∅),[13.26486]→[13.26486:26551](∅→∅),[13.26551]→[27.12898:12976](∅→∅),[27.12976]→[13.26629:26642](∅→∅),[13.26629]→[13.26629:26642](∅→∅)
name = "windows-link"version = "0.1.3"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"[[package]] - edit in Cargo.lock at line 6078[2.93787]→[13.26643:26667](∅→∅),[13.26667]→[27.12977:12995](∅→∅),[27.12995]→[13.26685:26750](∅→∅),[13.26685]→[13.26685:26750](∅→∅),[13.26750]→[27.12996:13074](∅→∅),[27.13074]→[13.26828:26877](∅→∅),[13.26828]→[13.26828:26877](∅→∅)
name = "windows-result"version = "0.3.4"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"dependencies = ["windows-link",][[package]] - replacement in Cargo.lock at line 6083
"windows-result 0.2.0","windows-result", - edit in Cargo.lock at line 6088[13.26919]→[13.26919:26944](∅→∅),[13.26944]→[27.13075:13093](∅→∅),[27.13093]→[13.26962:27027](∅→∅),[13.26962]→[13.26962:27027](∅→∅),[13.27027]→[27.13094:13172](∅→∅),[27.13172]→[13.27105:27139](∅→∅),[13.27105]→[13.27105:27139](∅→∅),[13.27139]→[2.94036:94051](∅→∅),[2.94036]→[2.94036:94051](∅→∅)
name = "windows-strings"version = "0.4.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"dependencies = ["windows-link",][[package]] - edit in Cargo.lock at line 6423
][[package]]name = "winnow"version = "0.5.40"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"dependencies = ["memchr", - edit in Cargo.lock at line 6498
name = "xdg-home"version = "1.3.0"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"dependencies = ["libc","windows-sys 0.59.0",][[package]] - edit in Cargo.lock at line 6530
[[package]]name = "yansi"version = "1.0.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" - edit in Cargo.lock at line 6579
version = "3.15.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6"dependencies = ["async-broadcast 0.5.1","async-executor","async-fs 1.6.0","async-io 1.13.0","async-lock 2.8.0","async-process 1.8.1","async-recursion","async-task","async-trait","blocking","byteorder","derivative","enumflags2","event-listener 2.5.3","futures-core","futures-sink","futures-util","hex","nix 0.26.4","once_cell","ordered-stream","rand 0.8.5","serde","serde_repr","sha1","static_assertions","tracing","uds_windows","winapi","xdg-home","zbus_macros 3.15.2","zbus_names 2.6.1","zvariant 3.15.2",][[package]]name = "zbus" - replacement in Cargo.lock at line 6583
"async-broadcast 0.7.2","async-broadcast", - replacement in Cargo.lock at line 6585[2.104552]→[27.16131:16150](∅→∅),[27.16150]→[10.29190:29211](∅→∅),[10.29190]→[10.29190:29211](∅→∅),[10.29211]→[27.16151:16175](∅→∅)
"async-io 2.4.1","async-lock 3.4.0","async-process 2.3.1","async-io","async-lock","async-process", - replacement in Cargo.lock at line 6595
"futures-lite 2.6.0","futures-lite", - replacement in Cargo.lock at line 6597
"nix 0.30.1","nix", - replacement in Cargo.lock at line 6604[13.28529]→[27.16192:16232](∅→∅),[27.16232]→[13.28569:28590](∅→∅),[13.28569]→[13.28569:28590](∅→∅),[13.28590]→[27.16233:16252](∅→∅),[27.16252]→[10.29340:29659](∅→∅),[13.28609]→[10.29340:29659](∅→∅),[10.29340]→[10.29340:29659](∅→∅)
"winnow 0.7.11","zbus_macros 5.7.1","zbus_names 4.2.0","zvariant 5.5.3",][[package]]name = "zbus_macros"version = "3.15.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5"dependencies = ["proc-macro-crate 1.3.1","proc-macro2","quote","regex","syn 1.0.109","zvariant_utils 1.0.1","winnow","zbus_macros","zbus_names","zvariant", - replacement in Cargo.lock at line 6616
"proc-macro-crate 3.3.0","proc-macro-crate", - replacement in Cargo.lock at line 6620[27.16367]→[13.28752:28773](∅→∅),[13.28752]→[13.28752:28773](∅→∅),[13.28773]→[27.16368:16387](∅→∅),[27.16387]→[13.28792:28817](∅→∅),[13.28792]→[13.28792:28817](∅→∅),[13.28817]→[10.29713:29978](∅→∅),[10.29713]→[10.29713:29978](∅→∅)
"zbus_names 4.2.0","zvariant 5.5.3","zvariant_utils 3.2.0",][[package]]name = "zbus_names"version = "2.6.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d"dependencies = ["serde","static_assertions","zvariant 3.15.2","zbus_names","zvariant","zvariant_utils", - replacement in Cargo.lock at line 6633
"winnow 0.7.11","zvariant 5.5.3","winnow","zvariant", - edit in Cargo.lock at line 6779[10.31052]→[10.31052:31328](∅→∅),[4.23543]→[2.106201:106234](∅→∅),[10.31328]→[2.106201:106234](∅→∅),[2.106201]→[2.106201:106234](∅→∅)
version = "3.15.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db"dependencies = ["byteorder","enumflags2","libc","serde","static_assertions","zvariant_derive 3.15.2",][[package]]name = "zvariant" - replacement in Cargo.lock at line 6787[13.29949]→[27.17455:17499](∅→∅),[27.17499]→[13.29992:30017](∅→∅),[13.29992]→[13.29992:30017](∅→∅),[13.30017]→[10.31355:31668](∅→∅),[10.31355]→[10.31355:31668](∅→∅)
"winnow 0.7.11","zvariant_derive 5.5.3","zvariant_utils 3.2.0",][[package]]name = "zvariant_derive"version = "3.15.2"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9"dependencies = ["proc-macro-crate 1.3.1","proc-macro2","quote","syn 1.0.109","zvariant_utils 1.0.1","winnow","zvariant_derive","zvariant_utils", - replacement in Cargo.lock at line 6798
"proc-macro-crate 3.3.0","proc-macro-crate", - replacement in Cargo.lock at line 6802[27.17614]→[13.30160:30185](∅→∅),[13.30160]→[13.30160:30185](∅→∅),[13.30185]→[10.31722:31981](∅→∅),[10.31722]→[10.31722:31981](∅→∅)
"zvariant_utils 3.2.0",][[package]]name = "zvariant_utils"version = "1.0.1"source = "registry+https://github.com/rust-lang/crates.io-index"checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200"dependencies = ["proc-macro2","quote","syn 1.0.109","zvariant_utils", - replacement in Cargo.lock at line 6816
"winnow 0.7.11","winnow",