1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-10-01 17:42:29 +01:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Keith Hall
839bfded39 Map /var/log/dmesg to Syslog syntax 2025-09-27 22:48:13 +03:00
4 changed files with 6 additions and 3 deletions

View File

@@ -57,6 +57,7 @@
- Map `.flatpakref` and `.flatpakrepo` files to INI syntax #3353 (@Ferenc-)
- Update hosts syntax #3368 (@keith-hall)
- Map `.kshrc` files to Bash syntax #3364 (@ritoban23)
- Map `/var/log/dmesg` files to Syslog syntax #3412 (@keith-hall)
## Themes

4
Cargo.lock generated
View File

@@ -1867,9 +1867,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "wait-timeout"
version = "0.2.1"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]

View File

@@ -100,7 +100,7 @@ assert_cmd = "2.0.12"
expect-test = "1.5.0"
serial_test = { version = "2.0.0", default-features = false }
predicates = "3.1.3"
wait-timeout = "0.2.1"
wait-timeout = "0.2.0"
tempfile = "3.16.0"
serde = { version = "1.0", features = ["derive"] }

View File

@@ -0,0 +1,2 @@
[mappings]
"Syslog" = ["/var/log/dmesg"]