diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-09-07 14:27:42 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-09-07 14:27:42 -0400 |
commit | e79e6132b9e2a3dbb587021f781976110195a47f (patch) | |
tree | 88ee45b1274887cb5334884529bcdc849bf393a1 /Cargo.toml | |
parent | d210c2ffe065431df381d2710d3958c4a5fe6a06 (diff) | |
download | instistats-e79e6132b9e2a3dbb587021f781976110195a47f.tar.gz |
serde_yaml dep
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml index e55e8d6..7200a88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,9 @@ authors = ["Ben Morrison <ben@gbmor.dev>"] edition = "2018" [dependencies] -serde_json = "^1.0.40" +serde_json = "1.0" +serde_yaml = "0.8" [dependencies.serde] -version = "^1.0" +version = "1.0" features = ["derive"] |