summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorkyoheiu <kyoheiu@outlook.com>2022-11-11 05:40:18 +0900
committerkyoheiu <kyoheiu@outlook.com>2022-11-11 05:40:18 +0900
commit8d6a4a6028ec4ade59bac440c8aaf92592dace72 (patch)
tree190263f3f2adf578708caf2e90a38c3fda7d9496 /Cargo.lock
parentd302d5ab09c18b44a16c384cb21bba6b25887ebc (diff)
Switch to serde_yaml
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock30
1 files changed, 20 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 575a12b..57f5ca7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -208,9 +208,9 @@ dependencies = [
"log",
"natord",
"serde",
+ "serde_yaml",
"simplelog",
"syntect",
- "toml",
"walkdir",
]
@@ -586,6 +586,19 @@ dependencies = [
]
[[package]]
+name = "serde_yaml"
+version = "0.9.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d232d893b10de3eb7258ff01974d6ee20663d8e833263c99409d4b13a0209da"
+dependencies = [
+ "indexmap",
+ "itoa",
+ "ryu",
+ "serde",
+ "unsafe-libyaml",
+]
+
+[[package]]
name = "signal-hook"
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -722,15 +735,6 @@ dependencies = [
]
[[package]]
-name = "toml"
-version = "0.5.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
-dependencies = [
- "serde",
-]
-
-[[package]]
name = "unicode-ident"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -743,6 +747,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
[[package]]
+name = "unsafe-libyaml"
+version = "0.2.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68"
+
+[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"