forked from amethyst/serde-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (21 loc) · 861 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "serde-diff"
version = "0.4.1"
authors = ["Karl Bergström <[email protected]>", "Philip Degarmo <[email protected]>"]
readme = "README.md"
exclude = ["examples/*"]
license = "Apache-2.0 OR MIT"
edition = "2018"
description = "A small helper to serialize the diff of two structs of the same type and apply those differences to other structs."
repository = "https://github.com/amethyst/serde-diff"
[badges]
maintenance = { status = "experimental" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde-diff-derive = { version = "0.4.0", path = "serde-diff-derive" }
serde = { version = "1", features = [ "derive" ] }
serde_derive = { version = "1", features = ["deserialize_in_place"]}
[dev-dependencies]
serde_json = "1.0"
bincode = "1.2"
rmp-serde = "0.15.0"