You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`amalgamator` is a set/map like data structure that allows you to combine members of the set/map together based on some criteria.
6
+
7
+
This is useful when you want to merge objects together that aren't strictly equal, but are similar enough that you want to treat them as the same object.
8
+
9
+
## Installation
10
+
11
+
```bash
12
+
cargo add amalgamator
13
+
```
14
+
15
+
### Serde Support
16
+
17
+
If you want to use `serde` support, you can enable the `serde` feature.
18
+
19
+
```bash
20
+
cargo add amalgamator --features serde
21
+
```
22
+
23
+
## Documentation
24
+
25
+
View the docs on the docs.rs [Documentation](https://docs.rs/amalgamator) page.
26
+
27
+
## License
28
+
29
+
This project is licensed under the MIT license or the Apache 2.0 license, at your option.
0 commit comments