1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-10-01 09:32:27 +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

@@ -1549,9 +1549,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "syn"
version = "2.0.106"
version = "2.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
dependencies = [
"proc-macro2",
"quote",

View File

@@ -119,7 +119,7 @@ regex = "1.10.6"
serde = "1.0"
serde_derive = "1.0"
serde_with = { version = "3.12.0", default-features = false, features = ["macros"] }
syn = { version = "2.0.106", features = ["full"] }
syn = { version = "2.0.104", features = ["full"] }
toml = { version = "0.9.1", features = ["preserve_order"] }
walkdir = "2.5"

View File

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