Skip to content

Commit f44aee2

Browse files
committed
Disable env_logger humantime feature
We rarely care about timings of events, and, when we care, we need millisecond precision
1 parent c6dbf40 commit f44aee2

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

Cargo.lock

Lines changed: 0 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/ra_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77

88
[dependencies]
99
pico-args = "0.3.0"
10-
env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] }
10+
env_logger = { version = "0.7.1", default-features = false }
1111

1212
ra_syntax = { path = "../ra_syntax" }
1313
ra_ide = { path = "../ra_ide" }

crates/ra_lsp_server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lsp-server = "0.3.0"
2626
ra_project_model = { path = "../ra_project_model" }
2727
ra_prof = { path = "../ra_prof" }
2828
ra_vfs_glob = { path = "../ra_vfs_glob" }
29-
env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] }
29+
env_logger = { version = "0.7.1", default-features = false }
3030
ra_cargo_watch = { path = "../ra_cargo_watch" }
3131
either = "1.5"
3232

0 commit comments

Comments
 (0)