Skip to content

Commit

Permalink
missing std feature for the log crate.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbin committed Jan 21, 2025
1 parent 06cf8d5 commit 2c3ceaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions components/monitors/cu_consolemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ tui-nodes = "0.8"
tui-widgets = "0.4" # 0.4.0 brings ratatui 0.29
color-eyre = "0.6"
gag = "1.0.0"
log = { version = "0.4", optional = true }
chrono = { version = "0.4", optional = true }
dashmap = { version = "6.1", optional = true }
log = { version = "0.4.25", features = ["std"], optional = true }
chrono = { version = "0.4.39", optional = true }
dashmap = { version = "6.1.0", optional = true }
2 changes: 1 addition & 1 deletion core/cu29_helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ simplelog = "0.12.2"
# this is for the integration tests
[dev-dependencies]
cu29-log-derive = { workspace = true }
cu29-helpers = { workspace = true }
# cu29-helpers = { workspace = true }
cu29-value = { workspace = true }
serde = { workspace = true }
tempfile = { workspace = true }

0 comments on commit 2c3ceaf

Please sign in to comment.