diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-08 12:11:39 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-08 12:11:39 +1300 |
commit | 6e13f2875055b77c1b29c5c75c328306ed50186c (patch) | |
tree | 668611e534ceb52120be48653a0a58b523f1e89e | |
parent | 31dfb128f23d5862128da60cd61613c9a9f0ce85 (diff) | |
download | toaster-6e13f2875055b77c1b29c5c75c328306ed50186c.zip |
Update log crate
-rw-r--r-- | Cargo.lock | 17 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 16 insertions, 3 deletions
@@ -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", @@ -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] |