mirror of
https://github.com/sharkdp/bat.git
synced 2025-10-04 11:02:25 +01:00
Compare commits
1 Commits
dependabot
...
dmesg_synt
Author | SHA1 | Date | |
---|---|---|---|
|
839bfded39 |
@@ -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
|
||||
|
||||
|
20
Cargo.lock
generated
20
Cargo.lock
generated
@@ -133,7 +133,8 @@ dependencies = [
|
||||
"grep-cli",
|
||||
"home",
|
||||
"indexmap",
|
||||
"itertools",
|
||||
"itertools 0.13.0",
|
||||
"itertools 0.14.0",
|
||||
"minus",
|
||||
"nix",
|
||||
"nu-ansi-term",
|
||||
@@ -899,6 +900,15 @@ version = "1.70.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.13.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||
dependencies = [
|
||||
"either",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "itertools"
|
||||
version = "0.14.0"
|
||||
@@ -1174,9 +1184,9 @@ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
||||
|
||||
[[package]]
|
||||
name = "plist"
|
||||
version = "1.8.0"
|
||||
version = "1.7.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
||||
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"indexmap",
|
||||
@@ -1242,9 +1252,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "quick-xml"
|
||||
version = "0.38.3"
|
||||
version = "0.32.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
||||
checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
]
|
||||
|
@@ -74,7 +74,7 @@ encoding_rs = "0.8.35"
|
||||
execute = { version = "0.2.13", optional = true }
|
||||
terminal-colorsaurus = "1.0"
|
||||
unicode-segmentation = "1.12.0"
|
||||
itertools = "0.14.0"
|
||||
itertools = "0.13.0"
|
||||
|
||||
[dependencies.git2]
|
||||
version = "0.20"
|
||||
@@ -93,7 +93,7 @@ features = ["wrap_help", "cargo"]
|
||||
|
||||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
home = "0.5.9"
|
||||
plist = "1.8.0"
|
||||
plist = "1.7.0"
|
||||
|
||||
[dev-dependencies]
|
||||
assert_cmd = "2.0.12"
|
||||
|
2
src/syntax_mapping/builtins/unix-family/50-syslog.toml
Normal file
2
src/syntax_mapping/builtins/unix-family/50-syslog.toml
Normal file
@@ -0,0 +1,2 @@
|
||||
[mappings]
|
||||
"Syslog" = ["/var/log/dmesg"]
|
Reference in New Issue
Block a user