Use `serde_derive` instead of `serde`'s `derive` feature'
Dependencies
- [2]
2MKP7CB7Move dependencies into workspace `Cargo.toml` - [3]
I52XSRUHMassive cleanup, and simplification - [4]
BV4PLHOVRemove dependency on `once_cell` - [5]
BECIRKR2Avoid a double formatting - [6]
6F6AAHK4Simplifying pijul::commands::log, and fixing Broken Pipe errors - [7]
Y6TBQN7MAutomatically format `pijul` crate - [8]
4KJ45IJLImplement new identity management - [9]
NAUECZW3Fixing the map between keys and identities - [10]
ABQDWHNGMigrate from `pijul::repository` to `pijul-repository` - [11]
4OJWMSOWFully replace crate::Identity - [12]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [13]
F2S6XETOFixing log --hash-only - [14]
OU6JOR3CAdd path filtering for log, add json output for log - [15]
32G3GOK7Migrate from `dialoguer` to `pijul-interaction` - [16]
ATUZBEPEAdd hunk paths to log ouput - [*]
SU3JX6SECreate `pijul-identity` crate - [*]
EJ7TFFOWRe-adding Cargo.lock
Change contents
- replacement in pijul-identity/src/lib.rs at line 56
use serde::{Deserialize, Serialize};use serde_derive::{Deserialize, Serialize}; - edit in pijul-identity/Cargo.toml at line 25
serde_derive.workspace = true - edit in pijul/src/commands/log.rs at line 17
use serde::Serialize; - replacement in pijul/src/commands/log.rs at line 182
#[derive(Serialize)]#[derive(serde_derive::Serialize)] - replacement in pijul/src/commands/log.rs at line 289
impl Serialize for LogIterator {impl serde::Serialize for LogIterator { - replacement in Cargo.toml at line 90
serde = { version = "1.0", features = ["derive"] }# The versions of `serde` and `serde_derive` must be exactly equal, see:# https://github.com/serde-rs/serde/issues/2584serde = "1.0" - edit in Cargo.toml at line 95
- edit in Cargo.lock at line 1982
"serde_derive",