Skip to content

Commit

Permalink
Use serde instead of hand-rolled serialization
Browse files Browse the repository at this point in the history
Co-authored-by: Pavel Grigorenko <grigorenkopv@ya.ru>
  • Loading branch information
piscisaureus and GrigorenkoPV committed Jun 14, 2023
1 parent e73378d commit 22ab3c3
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 283 deletions.
51 changes: 50 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 15 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,24 @@ argh = "0.1.10"
lazy_static = "1.4.0"
libc = "0.2"

[dependencies.serde]
version = "1.0"
features = ["std", "derive"]

[dependencies.serde_cbor]
version = "0.11"

[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.6"
features = [
"consoleapi",
"errhandlingapi",
"handleapi",
"processenv",
"processthreadsapi",
"std",
"synchapi",
"winbase",
"consoleapi",
"errhandlingapi",
"handleapi",
"processenv",
"processthreadsapi",
"std",
"synchapi",
"winbase",
]

[target.'cfg(not(any(windows, target_arch = "wasm32")))'.dependencies]
Expand Down
Loading

0 comments on commit 22ab3c3

Please sign in to comment.