owned_json_deserializer 1.0.0

Because apparently `serde_json` only deserializes through a referenceā„¢.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh


# ============================

#     git pre-commit hook

# ============================

# Add this file to .git/hooks/

# to get automatic formatting

# on every commit.


# fail if any subcommand fails

set -e


# sanity checks

cargo clippy -- -D warnings


# rustfmt

cargo fmt

git update-index --again