autosurgeon icon indicating copy to clipboard operation
autosurgeon copied to clipboard

Results 19 autosurgeon issues
Sort by recently updated
recently updated
newest added

Implement `PartialEq` and `Eq` in Text by delegating to the result of `as_str`. Includes unit tests.

I'm not sure the test below is 100% minimal, but I am seeing that the old key "discard" is not removed from the converted document. ``` automerge = "0.5.11" autosurgeon...

Hello! I have a newtype wrapper around a u64 like so: ```rust #[derive(Debug, Hydrate, Reconcile)] pub struct Item { pub name: String, pub date: Option, } #[derive(Debug, Hydrate, Reconcile)] pub...

Here is some working code with AutoCommit ``` pub fn log_draft(editor: RustOpaque) -> Result { let mut editor = editor.lock().unwrap(); let LocalEditor { doc, .. } = &mut *editor; let...

I think we want to migrate many types to RawText in Automerge 3. What are they? How should that migration happen?

Currently `autosurgeon` supports map types and list types, but there's not implmenentations for set types. It would be great if all of `std::collections` was represented.

This includes some minor changes to documentation, mostly fixing typos, but in some cases attempting to improve clarity. There is also one fix for a spelling mistake in an error...

To make this compile on `rustc 1.71.0-nightly`, I had to add the `extra-traits` feature to `syn` inside `autosurgeon-derive`.

I've noticed what I think is a bug in `autosurgeon`. In the test that follows, I create a data structure with a `Vec` of 3 strings, fork it, remove one...

I'm currently wanting to use this for restoring values in a document both at the latest state as well as sometimes from historical versions, using `_at` queries with the list...