Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr committed Dec 15, 2023
1 parent 5079c59 commit ad8f7d4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
21 changes: 12 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ keywords = ["trillium"]
categories = ["web-programming::http-server", "web-programming"]

[dependencies]
ansi-to-html = "0.1.3"
async-channel = "2.1.0"
ansi-to-html = "0.2.1"
async-channel = "2.1.1"
async-fs = "2.1.0"
async-global-executor = "2.3.1"
async-io = "2.2.0"
async-global-executor = "2.4.1"
async-io = "2.2.2"
atty = "0.2.14"
blocking = "1.5.1"
broadcaster = "1.0.0"
env_logger = "0.10.1"
futures-lite = "2.0.1"
futures-lite = "2.1.0"
log = "0.4.20"
serde = "1.0.193"
serde_json = "1.0.108"
Expand All @@ -32,12 +32,12 @@ trillium-router = "0.3.5"
trillium-static = { version = "0.4.0", features = ["smol"] }
trillium-websockets = { version = "0.5.2", features = ["json"] }
trillium-smol = "0.3.1"
trillium-client = "0.4.6"
trillium-client = "0.4.7"
trillium-logger = "0.4.3"
trillium-html-rewriter = "0.3.0"
url = "2.5.0"
clap = { version = "4.4.8", features = ["derive", "env"] }
clap-verbosity-flag = "2.1.0"
clap = { version = "4.4.11", features = ["derive", "env"] }
clap-verbosity-flag = "2.1.1"

[dependencies.bat]
features = ["minimal-application"]
Expand All @@ -46,7 +46,7 @@ default-features = false

[target.'cfg(unix)'.dependencies]
signal-hook = "0.3.17"
libc = "0.2.150"
libc = "0.2.151"
nix = { version = "0.27.1", default-features = false, features = ["signal", "process"] }
notify = "6.1.1"

Expand All @@ -56,3 +56,6 @@ doc = false
[[bin]]
name = "trillium"
doc = false

[profile.release]
lto = "fat"
2 changes: 1 addition & 1 deletion src/dev_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl DevServer {
io::stderr().write_all(&ok.stderr).unwrap();
async_io::block_on(
broadcaster.send(&Event::CompileError {
error: ansi_to_html::convert_escaped(
error: ansi_to_html::convert(
&String::from_utf8_lossy(&ok.stderr),
)
.unwrap(),
Expand Down

0 comments on commit ad8f7d4

Please sign in to comment.