summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2023-04-10 11:40:21 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2023-04-10 11:40:21 +0100
commitfdd45ddee7f00aa6ca8ced1ba9ec56746b2f19e1 (patch)
treea0e8708d9f1673901de9f099a7411ac4eff7e065
parent518587adab3f2ac01b4d4d4e4394e51b9e8b6d72 (diff)
downloadsubplot-fdd45ddee7f00aa6ca8ced1ba9ec56746b2f19e1.tar.gz
(chore): Update base64, env_logger, and serde_yaml
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
-rw-r--r--Cargo.lock33
-rw-r--r--Cargo.toml6
-rw-r--r--subplotlib/Cargo.toml2
3 files changed, 30 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 12c490d..11b8fc8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -65,9 +65,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "base64"
-version = "0.13.1"
+version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
+checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
[[package]]
name = "bitflags"
@@ -228,12 +228,12 @@ dependencies = [
[[package]]
name = "env_logger"
-version = "0.9.3"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
+checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
dependencies = [
- "atty",
"humantime",
+ "is-terminal",
"log",
"regex",
"termcolor",
@@ -899,7 +899,7 @@ dependencies = [
"anyhow",
"clap 3.2.23",
"serde",
- "serde_yaml",
+ "serde_yaml 0.8.26",
"textwrap 0.15.2",
"thiserror",
]
@@ -999,6 +999,19 @@ dependencies = [
]
[[package]]
+name = "serde_yaml"
+version = "0.9.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c"
+dependencies = [
+ "indexmap",
+ "itoa",
+ "ryu",
+ "serde",
+ "unsafe-libyaml",
+]
+
+[[package]]
name = "sha2"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1104,7 +1117,7 @@ dependencies = [
"serde",
"serde-aux",
"serde_json",
- "serde_yaml",
+ "serde_yaml 0.9.21",
"tempfile",
"tempfile-fast",
"tera",
@@ -1474,6 +1487,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
[[package]]
+name = "unsafe-libyaml"
+version = "0.2.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6"
+
+[[package]]
name = "utf8-width"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index 8d8ac08..84a7a14 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,7 @@ members = ["subplotlib", "subplotlib-derive", "subplot-build", "examples/seq"]
[dependencies]
anyhow = "1"
-base64 = "0.13.0"
+base64 = "0.21.0"
clap = { version = "4", features = ["derive", "env", "string"] }
file_diff = "1"
git-testament = "0.2"
@@ -33,12 +33,12 @@ roadmap = "0.4.5"
serde = { version = "1.0.101", features = ["derive"] }
serde-aux = { version = "4.0", default-features = false }
serde_json = "1.0"
-serde_yaml = "0.8.26"
+serde_yaml = "0.9.21"
tempfile = "3.1.0"
tempfile-fast = "0.3.1"
thiserror = "1"
time = { version = "0.3", features = ["formatting", "macros"] }
-env_logger = "0.9.0"
+env_logger = "0.10.0"
html-escape = "0.2.13"
line-col = "0.2.1"
diff --git a/subplotlib/Cargo.toml b/subplotlib/Cargo.toml
index 42dfecf..16830f2 100644
--- a/subplotlib/Cargo.toml
+++ b/subplotlib/Cargo.toml
@@ -19,7 +19,7 @@ rust-version = "1.63"
fehler = "1"
subplotlib-derive = { version = "0.6.0", path = "../subplotlib-derive" }
lazy_static = "1"
-base64 = "0.13"
+base64 = "0.21.0"
state = "0.5"
tempfile = "3.1"
fs2 = "0.4"