aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-08-03 11:35:28 +0100
committerAkshay <[email protected]>2020-08-03 11:35:28 +0100
commit7e1dff439f1768fc463ddcfcd6ea58a7a1711056 (patch)
treeddba3984452b7697f21570a9f989f135cec0b724 /Cargo.lock
parent3cc2fafe84ec2c8f40a9348f9fe9a5408606db6e (diff)
add toml crate
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3b465c5..d53a14d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -279,6 +279,7 @@ dependencies = [
279 "notify", 279 "notify",
280 "serde", 280 "serde",
281 "serde_json", 281 "serde_json",
282 "toml",
282 "typetag", 283 "typetag",
283] 284]
284 285
@@ -912,6 +913,15 @@ dependencies = [
912] 913]
913 914
914[[package]] 915[[package]]
916name = "toml"
917version = "0.5.6"
918source = "registry+https://github.com/rust-lang/crates.io-index"
919checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
920dependencies = [
921 "serde",
922]
923
924[[package]]
915name = "typetag" 925name = "typetag"
916version = "0.1.5" 926version = "0.1.5"
917source = "registry+https://github.com/rust-lang/crates.io-index" 927source = "registry+https://github.com/rust-lang/crates.io-index"