summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bridle <bridle.benjamin@gmail.com>2025-02-08 12:11:39 +1300
committerBen Bridle <bridle.benjamin@gmail.com>2025-02-08 12:11:39 +1300
commit6e13f2875055b77c1b29c5c75c328306ed50186c (patch)
tree668611e534ceb52120be48653a0a58b523f1e89e
parent31dfb128f23d5862128da60cd61613c9a9f0ce85 (diff)
downloadtoaster-6e13f2875055b77c1b29c5c75c328306ed50186c.zip
Update log crate
-rw-r--r--Cargo.lock17
-rw-r--r--Cargo.toml2
2 files changed, 16 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2a34269..41547b0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,11 +3,24 @@
version = 4
[[package]]
+name = "ansi"
+version = "1.0.0"
+source = "git+git://benbridle.com/ansi?tag=v1.0.0#81d47867c2c97a9ae1d1c8fdfcd42c582410ad2a"
+
+[[package]]
name = "log"
version = "1.1.1"
source = "git+git://benbridle.com/log?tag=v1.1.1#930f3d0e2b82df1243f423c092a38546ea7533c3"
[[package]]
+name = "log"
+version = "1.1.2"
+source = "git+git://benbridle.com/log?tag=v1.1.2#3d5d1f7a19436151ba1dd52a2b50664969d90db6"
+dependencies = [
+ "ansi",
+]
+
+[[package]]
name = "markdown"
version = "3.2.0"
source = "git+git://benbridle.com/markdown?tag=v3.2.0#883a2a63023ea9b1e4b2bb51831ea1dafcb7346a"
@@ -28,7 +41,7 @@ name = "switchboard"
version = "1.0.0"
source = "git+git://benbridle.com/switchboard?tag=v1.0.0#ea70fa89659e5cf1a9d4ca6ea31fb67f7a2cc633"
dependencies = [
- "log",
+ "log 1.1.1",
"paste",
]
@@ -36,7 +49,7 @@ dependencies = [
name = "toaster"
version = "1.9.0"
dependencies = [
- "log",
+ "log 1.1.2",
"markdown",
"recipe",
"switchboard",
diff --git a/Cargo.toml b/Cargo.toml
index 487f30c..3b10508 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2021"
vagabond = { git = "git://benbridle.com/vagabond", tag = "v1.1.0" }
markdown = { git = "git://benbridle.com/markdown", tag = "v3.2.0" }
recipe = { git = "git://benbridle.com/recipe", tag = "v1.4.0" }
-log = { git = "git://benbridle.com/log", tag = "v1.1.1" }
+log = { git = "git://benbridle.com/log", tag = "v1.1.2" }
switchboard = { git = "git://benbridle.com/switchboard", tag = "v1.0.0" }
[profile.release]