From d881f0bd585a34b334edca42bf26a115f0bb9aad Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 23 Apr 2026 17:54:22 -0300
Subject: [PATCH 01/25] Bump minimum Rust version to 1.94.0
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index bac9f33..21f25fb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,7 +9,7 @@ homepage = "https://en.jutty.dev"
documentation = "https://en.jutty.dev/node/Documentation"
edition = "2024"
-rust-version= "1.91.1"
+rust-version= "1.94.0"
[features]
serial-tests = []
From 5bfd23925b530da7b9cce36aab9722be6fb44ee5 Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 23 Apr 2026 17:55:21 -0300
Subject: [PATCH 02/25] Add mutation testing to justfile
---
.justfile | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/.justfile b/.justfile
index 92e5a80..ac7eb3c 100644
--- a/.justfile
+++ b/.justfile
@@ -198,6 +198,22 @@ cover-open:
alias oo := cover-open
+mutate:
+ -just mutate-single -- --test-threads=1 serial_tests::
+ -just mutate-single -- --skip serial_tests::
+
+alias m := mutate
+
+[private]
+mutate-single *cargo_test_args:
+ cargo mutants --iterate \
+ -E ' bool' \
+ --output target/mutants \
+ -- {{ cargo_test_args }}
+
# Tag HEAD with version from Cargo.toml
[script, group: 'assess']
tag commit="HEAD": update
From c18b656125c4857c5de060d4382475f9827127a0 Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 23 Apr 2026 18:13:47 -0300
Subject: [PATCH 03/25] Add supply chain security checks
---
.justfile | 11 +-
Cargo.lock | 345 ++++++++---------------------------------------------
Cargo.toml | 1 -
deny.toml | 243 +++++++++++++++++++++++++++++++++++++
4 files changed, 300 insertions(+), 300 deletions(-)
create mode 100644 deny.toml
diff --git a/.justfile b/.justfile
index ac7eb3c..8a3acb7 100644
--- a/.justfile
+++ b/.justfile
@@ -204,6 +204,9 @@ mutate:
alias m := mutate
+deny:
+ cargo deny check
+
[private]
mutate-single *cargo_test_args:
cargo mutants --iterate \
@@ -345,8 +348,7 @@ verify:
exit 1
fi
{{ just_cmd }} \
- todos-assess version-assess \
- security-assess \
+ todos-assess version-assess deny \
format-assess lint-assess check \
test "" cover-assess
@@ -368,11 +370,6 @@ version-assess: update
alias va := version-assess
-# Audit security advisories
-security-assess:
- cargo audit --deny warnings
-alias sa := security-assess
-
# Find TODOs
[group: 'assess']
todos-assess:
diff --git a/Cargo.lock b/Cargo.lock
index edb0fee..02377cd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2,12 +2,6 @@
# It is not intended for manual editing.
version = 4
-[[package]]
-name = "adler2"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
-
[[package]]
name = "aho-corasick"
version = "1.1.4"
@@ -40,9 +34,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
[[package]]
name = "axum"
-version = "0.8.8"
+version = "0.8.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
+checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
dependencies = [
"axum-core",
"bytes",
@@ -90,17 +84,11 @@ dependencies = [
"tracing",
]
-[[package]]
-name = "base64"
-version = "0.22.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
-
[[package]]
name = "bitflags"
-version = "2.11.0"
+version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
+checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
[[package]]
name = "block-buffer"
@@ -135,9 +123,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
[[package]]
name = "cc"
-version = "1.2.57"
+version = "1.2.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
+checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
dependencies = [
"find-msvc-tools",
"shlex",
@@ -197,15 +185,6 @@ dependencies = [
"libc",
]
-[[package]]
-name = "crc32fast"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
-dependencies = [
- "cfg-if",
-]
-
[[package]]
name = "crossbeam-deque"
version = "0.8.6"
@@ -268,7 +247,6 @@ dependencies = [
"tokio",
"toml",
"tower",
- "ureq",
]
[[package]]
@@ -283,16 +261,6 @@ version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
-[[package]]
-name = "flate2"
-version = "1.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
-dependencies = [
- "crc32fast",
- "miniz_oxide",
-]
-
[[package]]
name = "form_urlencoded"
version = "1.2.2"
@@ -382,9 +350,9 @@ dependencies = [
[[package]]
name = "hashbrown"
-version = "0.16.1"
+version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
+checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
[[package]]
name = "http"
@@ -442,9 +410,9 @@ dependencies = [
[[package]]
name = "hyper"
-version = "1.8.1"
+version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
+checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
dependencies = [
"atomic-waker",
"bytes",
@@ -456,7 +424,6 @@ dependencies = [
"httpdate",
"itoa",
"pin-project-lite",
- "pin-utils",
"smallvec",
"tokio",
]
@@ -518,9 +485,9 @@ dependencies = [
[[package]]
name = "indexmap"
-version = "2.13.0"
+version = "2.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
+checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
dependencies = [
"equivalent",
"hashbrown",
@@ -534,9 +501,9 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
[[package]]
name = "js-sys"
-version = "0.3.91"
+version = "0.3.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
+checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
dependencies = [
"once_cell",
"wasm-bindgen",
@@ -550,9 +517,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
[[package]]
name = "libc"
-version = "0.2.183"
+version = "0.2.186"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
+checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
[[package]]
name = "libm"
@@ -584,25 +551,15 @@ version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
-[[package]]
-name = "miniz_oxide"
-version = "0.8.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
-dependencies = [
- "adler2",
- "simd-adler32",
-]
-
[[package]]
name = "mio"
-version = "1.1.1"
+version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
+checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
dependencies = [
"libc",
"wasi",
- "windows-sys 0.61.2",
+ "windows-sys",
]
[[package]]
@@ -722,12 +679,6 @@ version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
-[[package]]
-name = "pin-utils"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
[[package]]
name = "ppv-lite86"
version = "0.2.21"
@@ -757,9 +708,9 @@ dependencies = [
[[package]]
name = "rand"
-version = "0.8.5"
+version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
dependencies = [
"libc",
"rand_chacha",
@@ -814,55 +765,6 @@ version = "0.8.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
-[[package]]
-name = "ring"
-version = "0.17.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
-dependencies = [
- "cc",
- "cfg-if",
- "getrandom",
- "libc",
- "untrusted",
- "windows-sys 0.52.0",
-]
-
-[[package]]
-name = "rustls"
-version = "0.23.37"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
-dependencies = [
- "log",
- "once_cell",
- "ring",
- "rustls-pki-types",
- "rustls-webpki",
- "subtle",
- "zeroize",
-]
-
-[[package]]
-name = "rustls-pki-types"
-version = "1.14.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
-dependencies = [
- "zeroize",
-]
-
-[[package]]
-name = "rustls-webpki"
-version = "0.103.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
-dependencies = [
- "ring",
- "rustls-pki-types",
- "untrusted",
-]
-
[[package]]
name = "rustversion"
version = "1.0.22"
@@ -940,9 +842,9 @@ dependencies = [
[[package]]
name = "serde_spanned"
-version = "1.0.4"
+version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
+checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
dependencies = [
"serde_core",
]
@@ -976,12 +878,6 @@ version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
-[[package]]
-name = "simd-adler32"
-version = "0.3.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
-
[[package]]
name = "siphasher"
version = "1.0.2"
@@ -1017,15 +913,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
dependencies = [
"libc",
- "windows-sys 0.61.2",
+ "windows-sys",
]
-[[package]]
-name = "subtle"
-version = "2.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
-
[[package]]
name = "syn"
version = "2.0.117"
@@ -1067,23 +957,23 @@ dependencies = [
[[package]]
name = "tokio"
-version = "1.50.0"
+version = "1.52.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
+checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
dependencies = [
"libc",
"mio",
"pin-project-lite",
"socket2",
"tokio-macros",
- "windows-sys 0.61.2",
+ "windows-sys",
]
[[package]]
name = "tokio-macros"
-version = "2.6.1"
+version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
+checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
dependencies = [
"proc-macro2",
"quote",
@@ -1116,18 +1006,18 @@ dependencies = [
[[package]]
name = "toml_parser"
-version = "1.0.10+spec-1.1.0"
+version = "1.1.2+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7df25b4befd31c4816df190124375d5a20c6b6921e2cad937316de3fccd63420"
+checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
dependencies = [
- "winnow 1.0.0",
+ "winnow 1.0.2",
]
[[package]]
name = "toml_writer"
-version = "1.0.7+spec-1.1.0"
+version = "1.1.1+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f17aaa1c6e3dc22b1da4b6bba97d066e354c7945cac2f7852d4e4e7ca7a6b56d"
+checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
[[package]]
name = "tower"
@@ -1179,9 +1069,9 @@ dependencies = [
[[package]]
name = "typenum"
-version = "1.19.0"
+version = "1.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
+checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
[[package]]
name = "ucd-trie"
@@ -1197,50 +1087,9 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
[[package]]
name = "unicode-segmentation"
-version = "1.12.0"
+version = "1.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
-
-[[package]]
-name = "untrusted"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
-
-[[package]]
-name = "ureq"
-version = "3.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
-dependencies = [
- "base64",
- "flate2",
- "log",
- "percent-encoding",
- "rustls",
- "rustls-pki-types",
- "ureq-proto",
- "utf8-zero",
- "webpki-roots",
-]
-
-[[package]]
-name = "ureq-proto"
-version = "0.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
-dependencies = [
- "base64",
- "http",
- "httparse",
- "log",
-]
-
-[[package]]
-name = "utf8-zero"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
+checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
[[package]]
name = "version_check"
@@ -1266,9 +1115,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
[[package]]
name = "wasm-bindgen"
-version = "0.2.114"
+version = "0.2.118"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
+checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
dependencies = [
"cfg-if",
"once_cell",
@@ -1279,9 +1128,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
-version = "0.2.114"
+version = "0.2.118"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
+checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@@ -1289,9 +1138,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
-version = "0.2.114"
+version = "0.2.118"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
+checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
dependencies = [
"bumpalo",
"proc-macro2",
@@ -1302,29 +1151,20 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
-version = "0.2.114"
+version = "0.2.118"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
+checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
dependencies = [
"unicode-ident",
]
-[[package]]
-name = "webpki-roots"
-version = "1.0.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
-dependencies = [
- "rustls-pki-types",
-]
-
[[package]]
name = "winapi-util"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
dependencies = [
- "windows-sys 0.61.2",
+ "windows-sys",
]
[[package]]
@@ -1386,15 +1226,6 @@ dependencies = [
"windows-link",
]
-[[package]]
-name = "windows-sys"
-version = "0.52.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
-dependencies = [
- "windows-targets",
-]
-
[[package]]
name = "windows-sys"
version = "0.61.2"
@@ -1404,70 +1235,6 @@ dependencies = [
"windows-link",
]
-[[package]]
-name = "windows-targets"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
-dependencies = [
- "windows_aarch64_gnullvm",
- "windows_aarch64_msvc",
- "windows_i686_gnu",
- "windows_i686_gnullvm",
- "windows_i686_msvc",
- "windows_x86_64_gnu",
- "windows_x86_64_gnullvm",
- "windows_x86_64_msvc",
-]
-
-[[package]]
-name = "windows_aarch64_gnullvm"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
-
-[[package]]
-name = "windows_aarch64_msvc"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
-
-[[package]]
-name = "windows_i686_gnu"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
-
-[[package]]
-name = "windows_i686_gnullvm"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
-
-[[package]]
-name = "windows_i686_msvc"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
-
-[[package]]
-name = "windows_x86_64_gnu"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
-
-[[package]]
-name = "windows_x86_64_gnullvm"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
-
-[[package]]
-name = "windows_x86_64_msvc"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
-
[[package]]
name = "winnow"
version = "0.7.15"
@@ -1476,36 +1243,30 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
[[package]]
name = "winnow"
-version = "1.0.0"
+version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8"
+checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
[[package]]
name = "zerocopy"
-version = "0.8.47"
+version = "0.8.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
+checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
-version = "0.8.47"
+version = "0.8.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
+checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
-[[package]]
-name = "zeroize"
-version = "1.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
-
[[package]]
name = "zmij"
version = "1.0.21"
diff --git a/Cargo.toml b/Cargo.toml
index 21f25fb..54a54a0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,7 +23,6 @@ serde = { version = "1.0.228", features = ["derive"] }
toml = "0.9.8"
[dev-dependencies]
-ureq = "3"
tower = { version = "0.5.2", features = ["util"] }
[lints.rust]
diff --git a/deny.toml b/deny.toml
new file mode 100644
index 0000000..3f372aa
--- /dev/null
+++ b/deny.toml
@@ -0,0 +1,243 @@
+# This template contains all of the possible sections and their default values
+
+# Note that all fields that take a lint level have these possible values:
+# * deny - An error will be produced and the check will fail
+# * warn - A warning will be produced, but the check will not fail
+# * allow - No warning or error will be produced, though in some cases a note
+# will be
+
+# The values provided in this template are the default values that will be used
+# when any section or field is not specified in your own configuration
+
+# Root options
+
+# The graph table configures how the dependency graph is constructed and thus
+# which crates the checks are performed against
+[graph]
+# If 1 or more target triples (and optionally, target_features) are specified,
+# only the specified targets will be checked when running `cargo deny check`.
+# This means, if a particular package is only ever used as a target specific
+# dependency, such as, for example, the `nix` crate only being used via the
+# `target_family = "unix"` configuration, that only having windows targets in
+# this list would mean the nix crate, as well as any of its exclusive
+# dependencies not shared by any other crates, would be ignored, as the target
+# list here is effectively saying which targets you are building for.
+targets = [
+ # The triple can be any string, but only the target triples built in to
+ # rustc (as of 1.40) can be checked against actual config expressions
+ #"x86_64-unknown-linux-musl",
+ # You can also specify which target_features you promise are enabled for a
+ # particular target. target_features are currently not validated against
+ # the actual valid features supported by the target architecture.
+ #{ triple = "wasm32-unknown-unknown", features = ["atomics"] },
+]
+# When creating the dependency graph used as the source of truth when checks are
+# executed, this field can be used to prune crates from the graph, removing them
+# from the view of cargo-deny. This is an extremely heavy hammer, as if a crate
+# is pruned from the graph, all of its dependencies will also be pruned unless
+# they are connected to another crate in the graph that hasn't been pruned,
+# so it should be used with care. The identifiers are [Package ID Specifications]
+# (https://doc.rust-lang.org/cargo/reference/pkgid-spec.html)
+#exclude = []
+# If true, metadata will be collected with `--all-features`. Note that this can't
+# be toggled off if true, if you want to conditionally enable `--all-features` it
+# is recommended to pass `--all-features` on the cmd line instead
+all-features = false
+# If true, metadata will be collected with `--no-default-features`. The same
+# caveat with `all-features` applies
+no-default-features = false
+# If set, these feature will be enabled when collecting metadata. If `--features`
+# is specified on the cmd line they will take precedence over this option.
+#features = []
+
+# The output table provides options for how/if diagnostics are outputted
+[output]
+# When outputting inclusion graphs in diagnostics that include features, this
+# option can be used to specify the depth at which feature edges will be added.
+# This option is included since the graphs can be quite large and the addition
+# of features from the crate(s) to all of the graph roots can be far too verbose.
+# This option can be overridden via `--feature-depth` on the cmd line
+feature-depth = 1
+
+# This section is considered when running `cargo deny check advisories`
+# More documentation for the advisories section can be found here:
+# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
+[advisories]
+# The path where the advisory databases are cloned/fetched into
+#db-path = "$CARGO_HOME/advisory-dbs"
+# The url(s) of the advisory databases to use
+#db-urls = ["https://github.com/rustsec/advisory-db"]
+# A list of advisory IDs to ignore. Note that ignored advisories will still
+# output a note when they are encountered.
+ignore = [
+ #"RUSTSEC-0000-0000",
+ #{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
+ #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
+ #{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" },
+]
+# If this is true, then cargo deny will use the git executable to fetch advisory database.
+# If this is false, then it uses a built-in git library.
+# Setting this to true can be helpful if you have special authentication requirements that cargo-deny does not support.
+# See Git Authentication for more information about setting up git authentication.
+#git-fetch-with-cli = true
+
+# This section is considered when running `cargo deny check licenses`
+# More documentation for the licenses section can be found here:
+# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
+[licenses]
+# List of explicitly allowed licenses
+# See https://spdx.org/licenses/ for list of possible licenses
+# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
+allow = [
+ "MIT",
+ "BSD-2-Clause",
+ "BSD-3-Clause",
+ "Apache-2.0",
+ "Apache-2.0 WITH LLVM-exception",
+ "AGPL-3.0-only",
+ "Unicode-3.0",
+]
+# The confidence threshold for detecting a license from license text.
+# The higher the value, the more closely the license text must be to the
+# canonical license text of a valid SPDX license file.
+# [possible values: any between 0.0 and 1.0].
+confidence-threshold = 0.8
+# Allow 1 or more licenses on a per-crate basis, so that particular licenses
+# aren't accepted for every possible crate as with the normal allow list
+exceptions = [
+ # Each entry is the crate and version constraint, and its specific allow
+ # list
+ #{ allow = ["Zlib"], crate = "adler32" },
+]
+
+# Some crates don't have (easily) machine readable licensing information,
+# adding a clarification entry for it allows you to manually specify the
+# licensing information
+#[[licenses.clarify]]
+# The package spec the clarification applies to
+#crate = "ring"
+# The SPDX expression for the license requirements of the crate
+#expression = "MIT AND ISC AND OpenSSL"
+# One or more files in the crate's source used as the "source of truth" for
+# the license expression. If the contents match, the clarification will be used
+# when running the license check, otherwise the clarification will be ignored
+# and the crate will be checked normally, which may produce warnings or errors
+# depending on the rest of your configuration
+#license-files = [
+# Each entry is a crate relative path, and the (opaque) hash of its contents
+#{ path = "LICENSE", hash = 0xbd0eed23 }
+#]
+
+[licenses.private]
+# If true, ignores workspace crates that aren't published, or are only
+# published to private registries.
+# To see how to mark a crate as unpublished (to the official registry),
+# visit https://doc.rust-lang.org/cargo/reference/manifest.html#the-publish-field.
+ignore = false
+# One or more private registries that you might publish crates to, if a crate
+# is only published to private registries, and ignore is true, the crate will
+# not have its license(s) checked
+registries = [
+ #"https://sekretz.com/registry
+]
+
+# This section is considered when running `cargo deny check bans`.
+# More documentation about the 'bans' section can be found here:
+# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
+[bans]
+# Lint level for when multiple versions of the same crate are detected
+multiple-versions = "warn"
+# Lint level for when a crate version requirement is `*`
+wildcards = "allow"
+# The graph highlighting used when creating dotgraphs for crates
+# with multiple versions
+# * lowest-version - The path to the lowest versioned duplicate is highlighted
+# * simplest-path - The path to the version with the fewest edges is highlighted
+# * all - Both lowest-version and simplest-path are used
+highlight = "all"
+# The default lint level for `default` features for crates that are members of
+# the workspace that is being checked. This can be overridden by allowing/denying
+# `default` on a crate-by-crate basis if desired.
+workspace-default-features = "allow"
+# The default lint level for `default` features for external crates that are not
+# members of the workspace. This can be overridden by allowing/denying `default`
+# on a crate-by-crate basis if desired.
+external-default-features = "allow"
+# List of crates that are allowed. Use with care!
+allow = [
+ #"ansi_term@0.11.0",
+ #{ crate = "ansi_term@0.11.0", reason = "you can specify a reason it is allowed" },
+]
+# If true, workspace members are automatically allowed even when using deny-by-default
+# This is useful for organizations that want to deny all external dependencies by default
+# but allow their own workspace crates without having to explicitly list them
+allow-workspace = false
+# List of crates to deny
+deny = [
+ #"ansi_term@0.11.0",
+ #{ crate = "ansi_term@0.11.0", reason = "you can specify a reason it is banned" },
+ # Wrapper crates can optionally be specified to allow the crate when it
+ # is a direct dependency of the otherwise banned crate
+ #{ crate = "ansi_term@0.11.0", wrappers = ["this-crate-directly-depends-on-ansi_term"] },
+]
+
+# List of features to allow/deny
+# Each entry the name of a crate and a version range. If version is
+# not specified, all versions will be matched.
+#[[bans.features]]
+#crate = "reqwest"
+# Features to not allow
+#deny = ["json"]
+# Features to allow
+#allow = [
+# "rustls",
+# "__rustls",
+# "__tls",
+# "hyper-rustls",
+# "rustls",
+# "rustls-pemfile",
+# "rustls-tls-webpki-roots",
+# "tokio-rustls",
+# "webpki-roots",
+#]
+# If true, the allowed features must exactly match the enabled feature set. If
+# this is set there is no point setting `deny`
+#exact = true
+
+# Certain crates/versions that will be skipped when doing duplicate detection.
+skip = [
+ #"ansi_term@0.11.0",
+ #{ crate = "ansi_term@0.11.0", reason = "you can specify a reason why it can't be updated/removed" },
+]
+# Similarly to `skip` allows you to skip certain crates during duplicate
+# detection. Unlike skip, it also includes the entire tree of transitive
+# dependencies starting at the specified crate, up to a certain depth, which is
+# by default infinite.
+skip-tree = [
+ #"ansi_term@0.11.0", # will be skipped along with _all_ of its direct and transitive dependencies
+ #{ crate = "ansi_term@0.11.0", depth = 20 },
+]
+
+# This section is considered when running `cargo deny check sources`.
+# More documentation about the 'sources' section can be found here:
+# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
+[sources]
+# Lint level for what to happen when a crate from a crate registry that is not
+# in the allow list is encountered
+unknown-registry = "warn"
+# Lint level for what to happen when a crate from a git repository that is not
+# in the allow list is encountered
+unknown-git = "warn"
+# List of URLs for allowed crate registries. Defaults to the crates.io index
+# if not specified. If it is specified but empty, no registries are allowed.
+allow-registry = ["https://github.com/rust-lang/crates.io-index"]
+# List of URLs for allowed Git repositories
+allow-git = []
+
+[sources.allow-org]
+# github.com organizations to allow git sources for
+github = []
+# gitlab.com organizations to allow git sources for
+gitlab = []
+# bitbucket.org organizations to allow git sources for
+bitbucket = []
From aab419a18a8b86fe6bd3909ab81010cec7b48ec1 Mon Sep 17 00:00:00 2001
From: jutty
Date: Mon, 1 Jun 2026 14:26:42 -0300
Subject: [PATCH 04/25] Bump dependencies, add justfile comments, apply fixes
---
.justfile | 11 ++-
Cargo.lock | 100 ++++++++++++-----------
src/syntax/content/parser/token/quote.rs | 2 +-
src/syntax/content/parser/token/table.rs | 4 +-
4 files changed, 62 insertions(+), 55 deletions(-)
diff --git a/.justfile b/.justfile
index 8a3acb7..04f6321 100644
--- a/.justfile
+++ b/.justfile
@@ -198,15 +198,14 @@ cover-open:
alias oo := cover-open
+# Perform mutation testing
+[group: 'develop']
mutate:
-just mutate-single -- --test-threads=1 serial_tests::
-just mutate-single -- --skip serial_tests::
alias m := mutate
-deny:
- cargo deny check
-
[private]
mutate-single *cargo_test_args:
cargo mutants --iterate \
@@ -377,6 +376,12 @@ todos-assess:
alias ta := todos-assess
+# Check for security advisories, unexpected licenses, allowed registries
+[group: 'assess']
+deny:
+ cargo deny check
+
+
# BUILD
# Cleanup build artifacts
diff --git a/Cargo.lock b/Cargo.lock
index 02377cd..21ada32 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -28,9 +28,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "autocfg"
-version = "1.5.0"
+version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
+checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
[[package]]
name = "axum"
@@ -111,9 +111,9 @@ dependencies = [
[[package]]
name = "bumpalo"
-version = "3.20.2"
+version = "3.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
+checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
[[package]]
name = "bytes"
@@ -123,9 +123,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
[[package]]
name = "cc"
-version = "1.2.60"
+version = "1.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
+checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
dependencies = [
"find-msvc-tools",
"shlex",
@@ -350,15 +350,15 @@ dependencies = [
[[package]]
name = "hashbrown"
-version = "0.17.0"
+version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
+checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
[[package]]
name = "http"
-version = "1.4.0"
+version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
+checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
dependencies = [
"bytes",
"itoa",
@@ -410,9 +410,9 @@ dependencies = [
[[package]]
name = "hyper"
-version = "1.9.0"
+version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
+checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
dependencies = [
"atomic-waker",
"bytes",
@@ -501,10 +501,12 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
[[package]]
name = "js-sys"
-version = "0.3.95"
+version = "0.3.99"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
+checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
dependencies = [
+ "cfg-if",
+ "futures-util",
"once_cell",
"wasm-bindgen",
]
@@ -529,9 +531,9 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
[[package]]
name = "log"
-version = "0.4.29"
+version = "0.4.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
+checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
[[package]]
name = "matchit"
@@ -541,9 +543,9 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
[[package]]
name = "memchr"
-version = "2.8.0"
+version = "2.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
+checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
[[package]]
name = "mime"
@@ -553,9 +555,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "mio"
-version = "1.2.0"
+version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
+checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
dependencies = [
"libc",
"wasi",
@@ -818,9 +820,9 @@ dependencies = [
[[package]]
name = "serde_json"
-version = "1.0.149"
+version = "1.0.150"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
+checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
dependencies = [
"itoa",
"memchr",
@@ -874,15 +876,15 @@ dependencies = [
[[package]]
name = "shlex"
-version = "1.3.0"
+version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
+checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
[[package]]
name = "siphasher"
-version = "1.0.2"
+version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
+checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
[[package]]
name = "slab"
@@ -908,9 +910,9 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
[[package]]
name = "socket2"
-version = "0.6.3"
+version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
+checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
dependencies = [
"libc",
"windows-sys",
@@ -957,9 +959,9 @@ dependencies = [
[[package]]
name = "tokio"
-version = "1.52.1"
+version = "1.52.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
+checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
dependencies = [
"libc",
"mio",
@@ -1010,7 +1012,7 @@ version = "1.1.2+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
dependencies = [
- "winnow 1.0.2",
+ "winnow 1.0.3",
]
[[package]]
@@ -1069,9 +1071,9 @@ dependencies = [
[[package]]
name = "typenum"
-version = "1.20.0"
+version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
+checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
[[package]]
name = "ucd-trie"
@@ -1087,9 +1089,9 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
[[package]]
name = "unicode-segmentation"
-version = "1.13.2"
+version = "1.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
+checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
[[package]]
name = "version_check"
@@ -1115,9 +1117,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
[[package]]
name = "wasm-bindgen"
-version = "0.2.118"
+version = "0.2.122"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
+checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
dependencies = [
"cfg-if",
"once_cell",
@@ -1128,9 +1130,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
-version = "0.2.118"
+version = "0.2.122"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
+checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@@ -1138,9 +1140,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
-version = "0.2.118"
+version = "0.2.122"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
+checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
dependencies = [
"bumpalo",
"proc-macro2",
@@ -1151,9 +1153,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
-version = "0.2.118"
+version = "0.2.122"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
+checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
dependencies = [
"unicode-ident",
]
@@ -1243,24 +1245,24 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
[[package]]
name = "winnow"
-version = "1.0.2"
+version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
+checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
[[package]]
name = "zerocopy"
-version = "0.8.48"
+version = "0.8.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
+checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
-version = "0.8.48"
+version = "0.8.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
+checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
dependencies = [
"proc-macro2",
"quote",
diff --git a/src/syntax/content/parser/token/quote.rs b/src/syntax/content/parser/token/quote.rs
index 397b41f..81d5544 100644
--- a/src/syntax/content/parser/token/quote.rs
+++ b/src/syntax/content/parser/token/quote.rs
@@ -40,7 +40,7 @@ impl Parseable for Quote {
let content = if let Some(citation) = &self.citation {
format!(
r#"{} {citation}"#,
- &self.text
+ self.text
)
} else {
String::from(&self.text)
diff --git a/src/syntax/content/parser/token/table.rs b/src/syntax/content/parser/token/table.rs
index f1dbae7..ab2f715 100644
--- a/src/syntax/content/parser/token/table.rs
+++ b/src/syntax/content/parser/token/table.rs
@@ -122,8 +122,8 @@ mod tests {
table.add_header("C");
let table_token = Token::Table(table.clone());
- assert_eq!(format!("{table}"), format!("Table [+3 headers]"));
- assert_eq!(format!("{table_token}"), format!("Tk:Table [+3 headers]"));
+ assert_eq!(format!("{table}"), "Table [+3 headers]");
+ assert_eq!(format!("{table_token}"), "Tk:Table [+3 headers]");
table.add_row(
["1", "2", "3"]
From 29c2beb3ed0aa6077b5585dd7ca1fda627175440 Mon Sep 17 00:00:00 2001
From: jutty
Date: Mon, 1 Jun 2026 16:07:26 -0300
Subject: [PATCH 05/25] Update docs for latest version, add more pointers
across starting pages
---
static/graph.toml | 70 +++++++++++++++++++++++++++++++----------------
1 file changed, 47 insertions(+), 23 deletions(-)
diff --git a/static/graph.toml b/static/graph.toml
index a4782ae..2b898e0 100644
--- a/static/graph.toml
+++ b/static/graph.toml
@@ -1,4 +1,28 @@
-root_node = "Documentation"
+root_node = "Start"
+
+[nodes.Start]
+text = """
+en is a writing tool. It was designed with complex, inter-connected projects in mind where the relationships between concepts matter. You can use to write non-linear, connected pieces of text and have their references mapped out as a |graph| of metadata-rich, connected information.
+
+It works by ingesting |TOML| files containing your node specifications and serving it as a human-readable website that allows nodes to be browsed, searched and listed in relation to each other or as a shallow tree of nodes. It also serves this node as raw data for integration with other tools that can then further transform what you have written.
+
+## Motivation
+
+en was created out of the desire to write complex, long-form descriptions of a personal worldview without being constrained or getting stuck trying to mimic the linearity of a typical philosophy book.
+
+It's described as a "writing instrument" because it's not so much about the presentation or even the web format. While that's the medium for this particular implementation, you can notice en serves its raw data in both TOML and JSON. It's first and foremost about mapping out and structuring written thoughts.
+
+Because en is defined in simple configuration files, you can add new pages easily from a few lines and start connecting them. Instead of having to create a dedicated file or resource for each new entry you find deserving of observation, with its own beginning and end, its own "I'm empty, fill me to completion" demeanor, you can stay in the flow of your sprawling thoughts. This is meant to fit the specific wiring of minds whose thoughts spread and fork quickly and often, whether to great depth or across wide expanses.
+
+## Get started
+
+- Check the |docs| to learn how to install and use en
+- Read about the |syntax| used to create nodes
+- Glimpse into en's future in the |roadmap|
+- Visit the |data endpoints|/data| for a raw view of this very graph
+- Look under the hood in the |source code|https://codeberg.org/jutty/en repo
+- See an index of all pages in the |tree|/tree|
+"""
[nodes.Documentation]
text = """
@@ -71,6 +95,8 @@ The main electronic component of a computer is its |motherboard|.
\"""
`
+In |the future|Roadmap, en should support both individual node files with TOML frontmatter and also multiple TOML files containing several nodes each. In the current implementation, all nodes live in a single `graph.toml` file.
+
Some special syntax is allowed inside the node text. See |Syntax| for supported features.
A node can have several other attributes. See |Node| for details on all of them.
@@ -94,20 +120,27 @@ Even if a node is not mentioned in the node text, you can still add connections
[nodes.Quark]
text = "A subatomic particle that forms hadrons."
-links = [ "Particle", "Hadron" ]
-`
+links = [ "Particle", "Hadron" ] `
This will create two outgoing connections from Quark: to Particle and to Hadron.
-For metadata-rich connections, which allow you to add properties to the connection, you can use the full connection syntax:
+For richer connections that have their own properties, you can use the full connection syntax:
`
-[[nodes.Realism.connections]]
-to = "Surrealism"
-kind = "contrast"
+[nodes.Earth.connections.Moon]
+kind = "Satellite"
+
+[nodes.Earth.connections.MilkyWay]
+kind = "Galaxy"
`
-This will create a connection from the node with ID `Realism` to a node with ID `Surrealism` and add the "contrast" kind to the connection. See |Connections| for the existing kinds and how they affect your graph.
+This will create connections from the node with ID `Earth` to the nodes with ID `Moon` and `MilkyWay` and add the "Satellite" and "Galaxy" kinds to each connection, respectively. This can be used to render connections in special ways and is reflected in the |outputs|.
+
+## Where to go from here
+
+en is in its infancy. If you are curious, you can download it and try it by using the |Syntax| docs as a reference or build the |SourceBuild|latest version| yourself to see what's new. Your bug reports are much appreciated.
+
+If you like what you see and are curious about en's future, take a look at the |roadmap| for a peek into what's to come.
"""
[nodes.docs]
@@ -612,6 +645,10 @@ If you need some more advanced feature that is not supported directly by en's ma
Notice that, as shown in this example, you can mix en syntax and HTML. You might want to add a space between your HTML tags and en special syntax so the boundary is clearer, but otherwise they don't tend to overlap since the symbols most used in HTML are not special in en with the exception of `<`, which is interpreted specially only at the end of lines.
If you want to avoid either one of these syntaxes from being interpreted specially, you should escape the relevant characters as explained in the previous section.
+
+## Known issues
+
+- Nesting multiple different formatting symbols is currently supported only in a few cases. Better nesting is on the |roadmap|, but currently may not work as expected.
"""
[nodes.Escaping]
@@ -748,21 +785,6 @@ en must differentiate node anchors from outgoing URLs:
It does this by looking at the destination and checking if it contains a `:`. That's one more reason to avoid this character in your node IDs.
"""
-[nodes.en]
-text = """
-en is a tool to write non-linear, connected pieces of text and have their references mapped out as a |graph| of connected information.
-
-It works by ingesting a |TOML| file containing your node specification and serving it as a website that allows nodes to be browsed, searched and listed in relation to each other or as a shallow tree of nodes.
-
-## Motivation
-
-en was created out of the desire to write complex, long-form descriptions of a personal worldview without being constrained or getting stuck trying to mimic the linearity of a typical philosophy book.
-
-It's described as a "writing instrument" because it's not so much about the presentation or even the web format. While that's the medium for this particular implementation, you can notice en serves its raw data in both TOML and JSON. It's first and foremost about mapping out and structuring written thoughts.
-
-Because en is defined in simple configuration files, you can add new pages easily from a few lines and start connecting them. Instead of having to create a dedicated file or resource for each new entry you find deserving of observation, with its own beginning and end, its own "I'm empty, fill me to completion" demeanor, you can stay in the flow of your sprawling thoughts. This is meant to fit the specific wiring of minds whose thoughts spread and fork quickly and often, whether to great depth or across wide expanses.
-"""
-
[nodes.Graph]
text = """
A graph is a data structure composed of connected (and disconnected) nodes.
@@ -829,6 +851,7 @@ text = """
- [x] Further centralize state
- [ ] Reduce O(n) calls in the formats module
- [ ] Input syntax
+ - [ ] Improve nested formatting
- [ ] Invert where redirects are set
- [x] Formatting
- [x] Blockquotes
@@ -915,6 +938,7 @@ text = """
- See: |https://keats.github.io/tera/docs/#whitespace-control|
- [ ] Full-text search
- [ ] Assess Option return types that should be Result
+- [ ] Consider printing parsing errors to console by default
## Done
From d0ca4e6cb38c1544920b7bd6abea0bbf946e2b21 Mon Sep 17 00:00:00 2001
From: jutty
Date: Tue, 2 Jun 2026 16:00:40 -0300
Subject: [PATCH 06/25] Add a context parser for PreFormat blocks
---
Cargo.lock | 10 +--
Cargo.toml | 2 +-
src/syntax/content/parser/context.rs | 31 ++++----
src/syntax/content/parser/context/block.rs | 44 ++++-------
.../content/parser/context/preformat.rs | 61 +++++++++++++++
src/syntax/content/parser/lexeme.rs | 5 ++
src/syntax/content/parser/lexer.rs | 4 +-
src/syntax/content/parser/state.rs | 8 +-
src/syntax/content/parser/token/preformat.rs | 76 ++++++++-----------
9 files changed, 146 insertions(+), 95 deletions(-)
create mode 100644 src/syntax/content/parser/context/preformat.rs
diff --git a/Cargo.lock b/Cargo.lock
index 21ada32..2d09c10 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -86,9 +86,9 @@ dependencies = [
[[package]]
name = "bitflags"
-version = "2.11.1"
+version = "2.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
+checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
[[package]]
name = "block-buffer"
@@ -238,7 +238,7 @@ dependencies = [
[[package]]
name = "en"
-version = "0.4.0-alpha"
+version = "0.4.1-alpha"
dependencies = [
"axum",
"serde",
@@ -531,9 +531,9 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
[[package]]
name = "log"
-version = "0.4.30"
+version = "0.4.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
+checksum = "113b30b4cd05f7c06868fdb2854f66a7b9fece9a48425351cd532e810d74024f"
[[package]]
name = "matchit"
diff --git a/Cargo.toml b/Cargo.toml
index 54a54a0..130e36b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "en"
-version = "0.4.0-alpha"
+version = "0.4.1-alpha"
description = "A non-linear writing instrument."
license = "AGPL-3.0-only"
diff --git a/src/syntax/content/parser/context.rs b/src/syntax/content/parser/context.rs
index e5010f6..e1379a5 100644
--- a/src/syntax/content/parser/context.rs
+++ b/src/syntax/content/parser/context.rs
@@ -1,12 +1,13 @@
use crate::syntax::content::parser::{
State, Token,
- token::{Header, Paragraph, PreFormat, Verse},
+ token::{Header, Paragraph, Verse},
};
pub mod anchor;
pub mod block;
pub mod inline;
pub mod list;
+pub mod preformat;
pub mod quote;
pub mod table;
@@ -38,30 +39,32 @@ pub enum Inline {
}
/// # Panics
-/// Panics if there is an open header or list at end of input.
+/// Panics if there is an open token at end of input that can't be easily
+/// closed by simply adding a matching closing token. This normally is handled
+/// by context parsers and probably indicates an error in one of them.
pub fn close(state: &State, tokens: &mut Vec) {
match state.context.block {
- Block::PreFormat => {
- tokens.push(Token::PreFormat(PreFormat::new(false)));
- },
Block::Paragraph => {
tokens.push(Token::Paragraph(Paragraph::new(false)));
},
- Block::List => {
- panic!("End of input with open list")
- },
Block::Header(level) => {
tokens.push(Token::Header(Header::from_u8(level, false, None)));
},
- Block::Quote => {
- panic!("End of input with open quote")
- },
- Block::Table => {
- panic!("End of input with open table")
- },
Block::Verse => {
tokens.push(Token::Verse(Verse::new(false)));
},
+ Block::PreFormat => {
+ panic!("End of input with open preformat: {tokens:#?}")
+ },
+ Block::List => {
+ panic!("End of input with open list: {tokens:#?}")
+ },
+ Block::Quote => {
+ panic!("End of input with open quote: {tokens:#?}")
+ },
+ Block::Table => {
+ panic!("End of input with open table: {tokens:#?}")
+ },
Block::None => (),
}
}
diff --git a/src/syntax/content/parser/context/block.rs b/src/syntax/content/parser/context/block.rs
index 3b34724..8048896 100644
--- a/src/syntax/content/parser/context/block.rs
+++ b/src/syntax/content/parser/context/block.rs
@@ -6,15 +6,17 @@ use crate::{
syntax::content::{
Parseable as _,
parser::{
- Block, Lexeme, State, Token,
+ Block, Lexeme, State, Token, context,
token::{
- Header, LineBreak, List, Literal, Paragraph, PreFormat, Quote,
- Table, Verse,
+ Header, LineBreak, List, Paragraph, PreFormat, Quote, Table,
+ Verse,
},
},
},
};
+/// A return of `true` will trigger a `continue` on the outer parser, causing
+/// no more subsequent parsing of the current lexeme.
pub fn parse(
lexeme: &Lexeme,
state: &mut State,
@@ -27,8 +29,7 @@ pub fn parse(
if PreFormat::probe(lexeme) {
log!(VERBOSE, "Block Context: None -> PreFormat on {lexeme}");
state.context.block = Block::PreFormat;
- tokens.push(Token::PreFormat(PreFormat::new(true)));
- return true;
+ return true
} else if Header::probe(lexeme) {
let mut header = Header::lex(lexeme);
header.dom_id = Some(Header::make_id(
@@ -44,7 +45,7 @@ pub fn parse(
log!(VERBOSE, "Block Context: None -> List on {lexeme}");
state.context.block = Block::List;
state.buffers.list.candidate.ordered = lexeme.match_char('+');
- return super::list::parse(
+ return context::list::parse(
lexeme, state, tokens, iterator, graph,
);
} else if Quote::probe(lexeme) {
@@ -71,14 +72,7 @@ pub fn parse(
}
},
Block::PreFormat => {
- if PreFormat::probe(lexeme) {
- tokens.push(Token::PreFormat(PreFormat::new(false)));
- log!(VERBOSE, "Block Context: PreFormat -> None on {lexeme}");
- state.context.block = Block::None;
- } else {
- tokens.push(Token::Literal(Literal::lex(lexeme)));
- }
- return true;
+ return context::preformat::parse(lexeme, state, tokens, iterator);
},
Block::Paragraph => {
if Paragraph::probe_end(lexeme) {
@@ -95,13 +89,17 @@ pub fn parse(
}
},
Block::List => {
- return super::list::parse(lexeme, state, tokens, iterator, graph);
+ return context::list::parse(lexeme, state, tokens, iterator, graph);
},
Block::Quote => {
- return super::quote::parse(lexeme, state, tokens, iterator, graph);
+ return context::quote::parse(
+ lexeme, state, tokens, iterator, graph,
+ );
},
Block::Table => {
- return super::table::parse(lexeme, state, tokens, iterator, graph);
+ return context::table::parse(
+ lexeme, state, tokens, iterator, graph,
+ );
},
Block::Verse => {
if Verse::probe_end(lexeme) {
@@ -127,7 +125,7 @@ mod tests {
graph::Graph,
syntax::content::parser::{
self, Block, State, Token, context,
- token::{Header, PreFormat, header::Level},
+ token::{Header, header::Level},
},
};
@@ -161,16 +159,6 @@ mod tests {
assert_eq!(vec, vec![Token::Header(Header::from_u8(1, false, None))]);
}
- #[test]
- fn end_with_open_preformat() {
- let mut state = State::default();
- state.context.block = Block::PreFormat;
-
- let mut vec: Vec = vec![];
- context::close(&state, &mut vec);
- assert_eq!(vec, vec![Token::PreFormat(PreFormat::new(false))]);
- }
-
#[test]
fn truncated_header_level() {
let u: usize = 999;
diff --git a/src/syntax/content/parser/context/preformat.rs b/src/syntax/content/parser/context/preformat.rs
new file mode 100644
index 0000000..ed6763f
--- /dev/null
+++ b/src/syntax/content/parser/context/preformat.rs
@@ -0,0 +1,61 @@
+use std::{iter::Peekable, slice::Iter};
+
+use crate::{
+ prelude::*,
+ syntax::content::{
+ Parseable as _,
+ parser::{Lexeme, State, Token, context::Block, token::PreFormat},
+ },
+};
+
+/// Handles open `PreFormat` contexts until a block is fully parsed.
+///
+/// A return of `true` will trigger a continue in the outer parser,
+/// skipping any further parsing of the current lexeme.
+///
+/// # Panics
+/// This parser can handle only the List context, and will panic if passed an
+/// unrelated context since it has no knowledge on how to handle them.
+pub fn parse(
+ lexeme: &Lexeme,
+ state: &mut State,
+ tokens: &mut Vec,
+ iterator: &mut Peekable>,
+) -> bool {
+ let buffer = &mut state.buffers.preformat;
+ let candidate = &mut buffer.candidate;
+
+ #[expect(clippy::wildcard_enum_match_arm)]
+ match state.context.block {
+ Block::PreFormat => {
+ if lexeme.match_first_char('<') {
+ candidate.text.push_str("<");
+ candidate.text.push_str(
+ lexeme.text().strip_prefix('<').unwrap_or(&lexeme.text()),
+ );
+ } else if lexeme.match_last_char('>') {
+ candidate.text.push_str(
+ lexeme.text().strip_suffix('>').unwrap_or(&lexeme.text()),
+ );
+ candidate.text.push_str(">");
+ } else if lexeme.match_char('\\') {
+ candidate.text.push_str(lexeme.next().as_str());
+ iterator.next();
+ return true;
+ } else if PreFormat::probe(lexeme) {
+ // found end of block, push it and reset state
+ log!(VERBOSE, "Accepting preformat candidate {candidate}");
+ tokens.push(Token::PreFormat(candidate.clone()));
+ state.context.block = Block::None;
+ *candidate = PreFormat::default();
+ } else {
+ // anything else is pushed into the candidate preformat's text
+ candidate.text.push_str(&lexeme.text());
+ }
+ },
+ _ => {
+ panic!("PreFormat context parser called for {:?}", state.context)
+ },
+ }
+ true
+}
diff --git a/src/syntax/content/parser/lexeme.rs b/src/syntax/content/parser/lexeme.rs
index 495b27b..94b28d5 100644
--- a/src/syntax/content/parser/lexeme.rs
+++ b/src/syntax/content/parser/lexeme.rs
@@ -32,6 +32,8 @@ impl Lexeme {
pub fn mutate_text(&mut self, new: &str) { self.text = new.to_string(); }
+ /// Returns an Option containing the character if the raw lexeme text
+ /// is composed of a single character, None if it has multiple characters.
pub fn as_char(&self) -> Option {
if self.text.chars().count() == 1 {
self.text.chars().nth(0)
@@ -56,6 +58,7 @@ impl Lexeme {
}
}
+ /// Returns true if the raw lexeme text is a single matching character.
pub fn match_char(&self, c: char) -> bool {
self.as_char().is_some_and(|as_char| as_char == c)
}
@@ -86,6 +89,8 @@ impl Lexeme {
&& self.match_third_char(c3)
}
+ /// Returns true if the lexeme raw text is composed of a single character
+ /// and this character is in the provided slice.
pub fn match_char_in(&self, slice: &[char]) -> bool {
self.as_char().is_some_and(|c| slice.contains(&c))
}
diff --git a/src/syntax/content/parser/lexer.rs b/src/syntax/content/parser/lexer.rs
index e9a0d40..e8d3abc 100644
--- a/src/syntax/content/parser/lexer.rs
+++ b/src/syntax/content/parser/lexer.rs
@@ -38,7 +38,9 @@ pub(super) fn lex(
let mut iterator = lexemes.iter().peekable();
while let Some(lexeme) = iterator.next() {
- if lexeme.match_char('\\') {
+ if lexeme.match_char('\\')
+ && !matches!(state.context.block, context::Block::PreFormat)
+ {
if let Some(next) = iterator.next() {
tokens.push(Token::Literal(Literal::lex(next)));
}
diff --git a/src/syntax/content/parser/state.rs b/src/syntax/content/parser/state.rs
index aa42f68..47498a3 100644
--- a/src/syntax/content/parser/state.rs
+++ b/src/syntax/content/parser/state.rs
@@ -3,7 +3,7 @@ use std::collections::HashMap;
use crate::syntax::content::parser::{
Token,
context::Context,
- token::{Anchor, Item, List, Quote, Table},
+ token::{Anchor, Item, List, PreFormat, Quote, Table},
};
#[derive(Clone, Default, Debug)]
@@ -29,6 +29,7 @@ pub struct Buffers {
pub list: ListBuffer,
pub quote: QuoteBuffer,
pub table: TableBuffer,
+ pub preformat: PreFormatBuffer,
}
#[derive(Default, Clone, Debug)]
@@ -59,6 +60,11 @@ pub struct TableBuffer {
pub in_header: bool,
}
+#[derive(Default, Clone, Debug)]
+pub struct PreFormatBuffer {
+ pub candidate: PreFormat,
+}
+
impl std::fmt::Display for AnchorBuffer {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let display_text = if self.text.is_empty() {
diff --git a/src/syntax/content/parser/token/preformat.rs b/src/syntax/content/parser/token/preformat.rs
index d950590..f24bbc4 100644
--- a/src/syntax/content/parser/token/preformat.rs
+++ b/src/syntax/content/parser/token/preformat.rs
@@ -1,46 +1,42 @@
use crate::syntax::content::{Lexeme, Parseable};
-#[derive(Debug, Clone, Eq, PartialEq)]
+#[derive(Debug, Default, Clone, Eq, PartialEq)]
pub struct PreFormat {
- open: Option,
+ pub text: String,
}
impl PreFormat {
- pub const fn new(open: bool) -> PreFormat { PreFormat { open: Some(open) } }
+ pub fn new(text: &str) -> PreFormat {
+ PreFormat {
+ text: String::from(text),
+ }
+ }
}
impl std::fmt::Display for PreFormat {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
- let display_open_state = if let Some(open_state) = self.open {
- if open_state { "open" } else { "closed" }
+ let character_count = self.text.chars().count();
+ let is_whitespace = self.text.trim_ascii().is_empty();
+ let summary = if is_whitespace {
+ "empty"
} else {
- "unknown"
+ &format!("{character_count} chars")
};
- write!(f, "PreFormat [{display_open_state}]")
+ write!(f, "PreFormat [{summary}]")
}
}
impl Parseable for PreFormat {
fn probe(lexeme: &Lexeme) -> bool {
- lexeme.match_first_char('`') && (lexeme.next() == "\n" || lexeme.last())
+ lexeme.match_char('`') && (lexeme.next() == "\n" || lexeme.last())
}
- fn lex(_lexeme: &Lexeme) -> PreFormat { PreFormat { open: None } }
-
- fn render(&self) -> String {
- if let Some(o) = self.open {
- if o {
- "
".to_owned()
- } else {
- "
".to_owned()
- }
- } else {
- panic!(
- "Attempt to render a preformat tag while open state is unknown"
- )
- }
+ fn lex(_lexeme: &Lexeme) -> PreFormat {
+ panic!("Attempt to lex a preformat directly from a lexeme")
}
+ fn render(&self) -> String { format!("
These are the destinations to which connections exist, but the target node doesn't.
Expand to see all detached edges.
From 70bdba50c8f49ba66fa48147f2eaa2ffc06f9d2f Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 10:27:59 -0300
Subject: [PATCH 12/25] Spell check docs
---
static/graph.toml | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/static/graph.toml b/static/graph.toml
index 488f8e5..23bba0b 100644
--- a/static/graph.toml
+++ b/static/graph.toml
@@ -6,9 +6,9 @@ root_node = "Start"
text = """
## What is en?
-en is a writing tool. It was designed with complex, conceptually heavy projects in mind where the relationships between terms matter and possibly have their own attributes. You can use it to write non-linear, connected textual works and have their references to which other mapped out as a |graph| of metadata-rich, interrelated information. This very website is running en.
+en is a writing tool. It was designed with complex, conceptually heavy projects, where the relationships between terms matter and possibly have their own attributes. You can use it to write non-linear, connected textual works and have their references to which other mapped out as a |graph| of metadata-rich, interrelated information. This very website is running en.
-It works by ingesting plain text files written in |TOML|, a file format that focuses on being human-readable but that can also be directly interpreted by computer programs. These files contain your node definitions and allow en to construct a human-readable website that makes your graphs' nodes browseable, searcheable and listed in relation to each other or as a shallow tree of nodes. It also serves this graph as raw data for integration with other tools that can further analyze and transform what you have written.
+It works by ingesting plain text files written in |TOML|, a file format that focuses on being human-readable but that can also be directly interpreted by computer programs. These files contain your node definitions and allow en to construct a human-readable website that makes your graphs' nodes browsable, searchable and listed in relation to each other or as a shallow tree of nodes. It also serves this graph as raw data for integration with other tools that can further analyze and transform what you have written.
## Motivation
@@ -175,7 +175,7 @@ This will create connections from the node with ID `Earth` to the nodes with ID
text = """
en take as its input one or more graph files containing your node definitions. It then processes your graph, looks for connections and configuration values and produces one or more outputs depending on your settings:
-- A browseable, live-served website (such as this one)
+- A browsable, live-served website (such as this one)
- A |TOML| representation of the graph that can be used as a basis to generate other, adapted graphs
- A JSON representation of the graph that can be further analyzed and interpreted with third-party tools
@@ -685,7 +685,7 @@ Finally, you can precede any character with a `\\\\` to fully _escape_ that char
## Raw HTML
-If you need some more advanced feature that is not supported directly by en's markup snytax, you can always just write plain HTML and it will be passed along. For example, you could render a form:
+If you need some more advanced feature that is not supported directly by en's markup syntax, you can always just write plain HTML and it will be passed along. For example, you could render a form:
`
<form style="text-align: center;">
@@ -814,7 +814,7 @@ If you write a node anchor with spaces, it will be collapsed:
This |Node Anchor| will work as if it were |NodeAnchor|.
`
-Accordingly, node IDs should not have spaces because, among other things, this feature makes it impossible to create an achor to them.
+Accordingly, node IDs should not have spaces because, among other things, this feature makes it impossible to create an anchor to them.
## Case-insensitive fallbacks
@@ -1072,4 +1072,3 @@ about = true
footer_text = """
acknowledgments|Acknowledgments • |source code|https://codeberg.org/jutty/en
"""
-
From 8649169baee858fc4b4d3634c8e54400c89eaf04 Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 10:28:13 -0300
Subject: [PATCH 13/25] Add CSS to watchexec extensions
---
.justfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.justfile b/.justfile
index 04f6321..28649d6 100644
--- a/.justfile
+++ b/.justfile
@@ -468,7 +468,7 @@ default_target := musl_target
debug_vars := 'DEBUG=${DEBUG:-} DEBUG_FILTER=${DEBUG_FILTER:-} RUST_BACKTRACE=${RUST_BACKTRACE:-} RUSTFLAGS=${RUSTFLAGS:-}'
just_cmd := 'just --timestamp --explain --command-color green'
just_cmd_no_ts := 'just --explain --command-color green'
-watch_cmd := "watchexec -qc -r -e rs,toml,html --color always -- "
+watch_cmd := "watchexec -qc -r -e rs,toml,html,css --color always -- "
cover_cmd := 'cargo llvm-cov --color always --ignore-filename-regex "main\.rs|log\.rs"'
last_tag := `git tag --sort=-creatordate | head -1 | tr -d v`
From c2de0283fd48ca6f3f96aee8c19499ecee7f136a Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 10:28:47 -0300
Subject: [PATCH 14/25] Update roadmap
---
static/graph.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/static/graph.toml b/static/graph.toml
index 23bba0b..ec33fd9 100644
--- a/static/graph.toml
+++ b/static/graph.toml
@@ -908,9 +908,9 @@ text = """
## Upcoming
## `v0.5.0-alpha`
-- [ ] Rich connections
+- [ ] Custom kind for connections
- [ ] Docs for custom assets and templates
-- [ ] Fix anchors containing `/` and `#` considered node IDs
+- [x] Fix anchors containing `/` and `#` considered node IDs
- [x] Fix `PreFormat` blocks rendering HTML tags
From e0a5eaaf2f8b87fa4633780baba93ce19d34a343 Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 10:51:26 -0300
Subject: [PATCH 15/25] Rename Start to Introduction, tweak About page links
---
static/graph.toml | 10 +++++-----
templates/about.html | 6 +++---
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/static/graph.toml b/static/graph.toml
index ec33fd9..b961c43 100644
--- a/static/graph.toml
+++ b/static/graph.toml
@@ -1,8 +1,8 @@
#:schema ./graph-schema.json
-root_node = "Start"
+root_node = "Introduction"
-[nodes.Start]
+[nodes.Introduction]
text = """
## What is en?
@@ -29,11 +29,11 @@ en is in its infancy. Right now, most of the work is focused on making the marku
- JSON schema for language server integration
- Full-text search
-If you like what you see and are curious about en's future, take a look at the |roadmap| for a more comprehensive outlook of what else is to come.
+If you like what you see and are curious about en's future, take a look at the |roadmap| for a more comprehensive view of what else is to come.
## Get started
-See the |GetStarted| page to learn how to install and use en
+See the |Get Started|GetStarted| page to learn how to install and use en.
"""
[nodes.GetStarted]
@@ -900,7 +900,7 @@ en is only possible thanks to a number of projects and people:
"""
[nodes.RedirectTest]
-redirect = "Start"
+redirect = "Node"
[nodes.Roadmap]
text = """
diff --git a/templates/about.html b/templates/about.html
index a883140..ce09cf9 100644
--- a/templates/about.html
+++ b/templates/about.html
@@ -15,10 +15,10 @@
{% endif %}
From 47f8530487b45ce42fa1de49a699040c882c1cfb Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 12:49:59 -0300
Subject: [PATCH 16/25] Add spelling and TOML schema checks
---
.forgejo/workflows/setup-tools.sh | 35 +++++++++++++++++++++++++++----
.justfile | 14 +++++++++++--
Cargo.toml | 9 ++++++++
src/router/handlers/fixed.rs | 4 ++--
static/graph.toml | 24 ++++++++++++---------
static/welcome.toml | 2 ++
6 files changed, 70 insertions(+), 18 deletions(-)
diff --git a/.forgejo/workflows/setup-tools.sh b/.forgejo/workflows/setup-tools.sh
index ff6e814..dfcb6f8 100755
--- a/.forgejo/workflows/setup-tools.sh
+++ b/.forgejo/workflows/setup-tools.sh
@@ -9,12 +9,21 @@ CARGO_LLVM_COV_SHA256SUM="57f491aedf7cdb261538ceb49cbb1ee9d27df7ca205a5e1a009caa
CARGO_AUDIT_VERSION="0.22.1"
CARGO_AUDIT_TAG="cargo-audit%2Fv$CARGO_AUDIT_VERSION"
CARGO_AUDIT_SHA256SUM="1890badd5f15831a9af4b074399fcd21e6f7c0fe42c84e9254cdffc9f813765c"
+TAPLO_VERSION="0.10.0"
+TAPLO_SHA256SUM="8fe196b894ccf9072f98d4e1013a180306e17d244830b03986ee5e8eabeb6156"
+TYPOS_VERSION="1.47.2"
+TYPOS_SHA256SUM="7aef58932fc123b4cf4b40d86468e89a3297d80169051d7cfd13a235e05fc426"
TRIPLE="x86_64-unknown-linux-gnu"
TRIPLE_MUSL="x86_64-unknown-linux-musl"
fetch() {
- repo="$1"; tag="$2"; filename="$3"; digest="$4"; binary="$5"
+ repo="$1"
+ tag="$2"
+ filename="$3"
+ digest="$4"
+ binary="$5"
+ renamed_binary="${6:-$binary}"
[ -d /tmp/tools ] || mkdir -p /tmp/tools
@@ -24,9 +33,19 @@ fetch() {
printf '%s %s\n' "$digest" "/tmp/$filename" > /tmp/digest
sha256sum --check /tmp/digest
- tar xf "/tmp/$filename" -C /tmp/tools
- find /tmp/tools -type f -executable -name "$binary" \
- -exec mv -v '{}' /usr/local/bin ';'
+
+ if printf '%s' "$filename" | grep -qE '\.tar\.|\.tgz$'; then
+ tar xf "/tmp/$filename" -C /tmp/tools
+ elif printf '%s' "$filename" | grep -q '\.gz$'; then
+ gunzip -c "/tmp/$filename" > "/tmp/tools/$binary"
+ else
+ echo "Fatal: can't determine how to unpack $filename"
+ exit 1
+ fi
+
+ find /tmp/tools -type f -name "$binary" \
+ -exec mv -v '{}' "/usr/local/bin/$renamed_binary" ';'
+ chmod +x "/usr/local/bin/$renamed_binary"
}
fetch casey/just "$JUST_VERSION" \
@@ -40,3 +59,11 @@ fetch taiki-e/cargo-llvm-cov "v$CARGO_LLVM_COV_VERSION" \
fetch rustsec/rustsec "$CARGO_AUDIT_TAG" \
"cargo-audit-$TRIPLE-v$CARGO_AUDIT_VERSION.tgz" \
"$CARGO_AUDIT_SHA256SUM" cargo-audit
+
+fetch tamasfe/taplo "$TAPLO_VERSION" \
+ "taplo-linux-x86_64.gz" \
+ "$TAPLO_SHA256SUM" taplo-linux-x86_64 taplo
+
+fetch crate-ci/typos "v$TYPOS_VERSION" \
+ "typos-v$TYPOS_VERSION-$TRIPLE_MUSL.tar.gz" \
+ "$TYPOS_SHA256SUM" typos
diff --git a/.justfile b/.justfile
index 28649d6..9ae185c 100644
--- a/.justfile
+++ b/.justfile
@@ -51,7 +51,7 @@ alias wc := run-watch-containerized
[private]
assess-quick:
- {{ just_cmd }} lint check test-cover-quick
+ {{ just_cmd }} lint check test-cover-quick spell
[private]
assess-run-quick:
@@ -347,7 +347,7 @@ verify:
exit 1
fi
{{ just_cmd }} \
- todos-assess version-assess deny \
+ todos-assess version-assess spell schema-lint deny \
format-assess lint-assess check \
test "" cover-assess
@@ -381,6 +381,16 @@ alias ta := todos-assess
deny:
cargo deny check
+# Check for spelling mistakes
+[group: 'assess']
+spell:
+ typos
+
+# Lint the default and builtin graphs against the schema
+[group: 'assess']
+schema-lint:
+ test -z "$(grep -LF '#:schema ./graph-schema.json' static/*.toml)"
+ taplo lint static/*.toml
# BUILD
diff --git a/Cargo.toml b/Cargo.toml
index 130e36b..a3b9a52 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -268,3 +268,12 @@ zero_sized_map_values = "warn"
negative_feature_names = "warn"
redundant_feature_names = "warn"
wildcard_dependencies = "warn"
+
+[package.metadata.typos.default]
+extend-ignore-re = [
+ "oficial do Brasil",
+ "Creative Commons ND",
+ "Creative Commons BY-ND",
+ "CC_BY_ND_",
+ "(?ms)^mod tests \\{.*^\\}",
+]
diff --git a/src/router/handlers/fixed.rs b/src/router/handlers/fixed.rs
index d9bd120..bf905ed 100644
--- a/src/router/handlers/fixed.rs
+++ b/src/router/handlers/fixed.rs
@@ -216,7 +216,7 @@ impl Asset {
///
/// Defaults are found in the `fixed::DEFAULTS` map.
///
-/// Returns a `FallbackError` if neither is found or an I/O error ocurred.
+/// Returns a `FallbackError` if neither is found or an I/O error occurred.
fn fallback(path: &str, graph: &Graph) -> Result {
let target = format!("static/public/assets/{path}");
let defaults: HashMap<&str, &str> = TEXTS.iter().copied().collect();
@@ -292,7 +292,7 @@ pub async fn file(
} else {
String::from(
"The requested file exists, but the server lacks \
- permission to access it or another I/O error ocurred.",
+ permission to access it or another I/O error occurred.",
)
};
if log::env_level() >= DEBUG {
diff --git a/static/graph.toml b/static/graph.toml
index b961c43..efd69d4 100644
--- a/static/graph.toml
+++ b/static/graph.toml
@@ -6,13 +6,13 @@ root_node = "Introduction"
text = """
## What is en?
-en is a writing tool. It was designed with complex, conceptually heavy projects, where the relationships between terms matter and possibly have their own attributes. You can use it to write non-linear, connected textual works and have their references to which other mapped out as a |graph| of metadata-rich, interrelated information. This very website is running en.
+en is a writing tool. It was designed for complex, conceptually heavy projects, where the relationships between terms matter and possibly have their own attributes. You can use it to write non-linear, connected textual works and have their references to which other mapped out as a |graph| of metadata-rich, interrelated information. This very website is running en.
It works by ingesting plain text files written in |TOML|, a file format that focuses on being human-readable but that can also be directly interpreted by computer programs. These files contain your node definitions and allow en to construct a human-readable website that makes your graphs' nodes browsable, searchable and listed in relation to each other or as a shallow tree of nodes. It also serves this graph as raw data for integration with other tools that can further analyze and transform what you have written.
## Motivation
-en was created out of the desire to write a web of encyclopedic-style long-form texts documenting a personal worldview. It aims to remove the constraints imposed by trying to mimic the linearity of a typical nonfiction book.
+en was created out of the desire to write a book that did not follow a linear progression. But it can be used for note-taking, studying, documentation, encyclopedic content and any other format that benefits from a focus on the connections between pages. It aims to remove the constraints imposed by trying to mimic the linearity of typical nonfiction writing.
It's described as a "writing instrument" because it's not so much about the presentation or even the web format. While that's the medium for this particular implementation, you can notice en serves its raw data in both TOML and JSON. It's first and foremost about mapping out and structuring written thoughts.
@@ -908,11 +908,22 @@ text = """
## Upcoming
## `v0.5.0-alpha`
-- [ ] Custom kind for connections
- [ ] Docs for custom assets and templates
+- [ ] Custom kind for connections
+- [ ] Hide tree leaves from the top level
- [x] Fix anchors containing `/` and `#` considered node IDs
- [x] Fix `PreFormat` blocks rendering HTML tags
+## `v0.6.0-alpha`
+- [ ] Custom header include
+
+## `v0.7.0-alpha`
+- [ ] Frontmatter format
+- [ ] Multi-file graphs
+
+## `v0.8.0-alpha`
+- [ ] Full-text search
+
## Backlog
@@ -943,12 +954,10 @@ text = """
- [ ] By most linked to
- [ ] By most linked
- Tree
- - [ ] Hide tree leaves from the top level
- [ ] Branch deeper
- Customization
- [ ] Custom assets (favicon, CSS)
- [x] Drop all hardcoded assets endpoints
- - [ ] Custom header include
- [x] Custom templates
- [ ] user-supplied loading order (e.g. through filenames)
- [ ] Themes
@@ -974,8 +983,6 @@ text = """
### I/O formats
#### Input
-- [ ] Frontmatter format
-- [ ] Multi-file graphs
- [ ] Multi-graph
#### Output
@@ -991,9 +998,6 @@ text = """
- [ ] Reduce whitespace
- See: |https://keats.github.io/tera/docs/#whitespace-control|
-### Server
-- [ ] Full-text search
-
### Documentation
- [ ] Generate `meta.config` docs from JSON schema
diff --git a/static/welcome.toml b/static/welcome.toml
index 7ff2d33..90341de 100644
--- a/static/welcome.toml
+++ b/static/welcome.toml
@@ -1,3 +1,5 @@
+#:schema ./graph-schema.json
+
[nodes.GettingStarted]
title = "Getting Started"
text = """
From 83d7b7e7aa3c118f47f1bb42cc10e547ca983c6c Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 13:14:08 -0300
Subject: [PATCH 17/25] CI: Allow manually triggering publish workflow
---
.forgejo/workflows/publish.yaml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml
index fc546f8..6a96939 100644
--- a/.forgejo/workflows/publish.yaml
+++ b/.forgejo/workflows/publish.yaml
@@ -2,6 +2,14 @@ on:
push:
tags:
- 'v*'
+ workflow_dispatch:
+ inputs:
+ upload:
+ description: 'Upload built assets to the git.jutty.dev package registry'
+ type: boolean
+ required: false
+ default: true
+
jobs:
publish:
runs-on: docker
@@ -45,6 +53,7 @@ jobs:
run: just shasum
- name: Publish x64 glibc binary to git.jutty.dev registry
+ if: ${{ inputs.upload }}
run: |
version=$(./target/x86_64-unknown-linux-gnu/release/en --version)
api_root=https://git.jutty.dev/api
@@ -55,6 +64,7 @@ jobs:
--upload-file target/x86_64-unknown-linux-gnu/release/en $url
- name: Publish x64 musl binary to git.jutty.dev registry
+ if: ${{ inputs.upload }}
run: |
version=$(./target/x86_64-unknown-linux-musl/release/en --version)
api_root=https://git.jutty.dev/api
From 2a01b9ac4cec6139dc0c83233b1168b555a44c58 Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 16:49:50 -0300
Subject: [PATCH 18/25] CI: Add new assessments to verify workflow, improve Git
tag check
---
.forgejo/workflows/setup-tools.sh | 6 +++++
.forgejo/workflows/verify.yaml | 10 ++++---
.justfile | 43 +++++++++++++++++--------------
Cargo.lock | 2 +-
Cargo.toml | 2 +-
5 files changed, 39 insertions(+), 24 deletions(-)
diff --git a/.forgejo/workflows/setup-tools.sh b/.forgejo/workflows/setup-tools.sh
index dfcb6f8..3c71b7c 100755
--- a/.forgejo/workflows/setup-tools.sh
+++ b/.forgejo/workflows/setup-tools.sh
@@ -13,6 +13,8 @@ TAPLO_VERSION="0.10.0"
TAPLO_SHA256SUM="8fe196b894ccf9072f98d4e1013a180306e17d244830b03986ee5e8eabeb6156"
TYPOS_VERSION="1.47.2"
TYPOS_SHA256SUM="7aef58932fc123b4cf4b40d86468e89a3297d80169051d7cfd13a235e05fc426"
+CARGO_DENY_VERSION="0.19.8"
+CARGO_DENY_SHA256SUM="70e769ae3872e34d45132b17040859175e11401dc12dddb0303e0b8c7d088f3f"
TRIPLE="x86_64-unknown-linux-gnu"
TRIPLE_MUSL="x86_64-unknown-linux-musl"
@@ -67,3 +69,7 @@ fetch tamasfe/taplo "$TAPLO_VERSION" \
fetch crate-ci/typos "v$TYPOS_VERSION" \
"typos-v$TYPOS_VERSION-$TRIPLE_MUSL.tar.gz" \
"$TYPOS_SHA256SUM" typos
+
+fetch EmbarkStudios/cargo-deny "$CARGO_DENY_VERSION" \
+ cargo-deny-$CARGO_DENY_VERSION-$TRIPLE_MUSL.tar.gz \
+ "$CARGO_DENY_SHA256SUM" cargo-deny
diff --git a/.forgejo/workflows/verify.yaml b/.forgejo/workflows/verify.yaml
index 2d4e590..c37f8e7 100644
--- a/.forgejo/workflows/verify.yaml
+++ b/.forgejo/workflows/verify.yaml
@@ -9,6 +9,7 @@ on:
- .forgejo/**
- Cargo.toml
- Cargo.lock
+
jobs:
verify:
runs-on: docker
@@ -39,9 +40,12 @@ jobs:
useradd -m ci && chown -R ci:ci .
git config --global --add safe.directory "$PWD"
- - name: Build
- run: just ci build
-
+ - name: Text matching checks
+ run: just ci todos-assess version-assess spell
+ - name: Schema lint
+ run: just ci schema-lint
+ - name: Deny
+ run: just ci deny
- name: Format
run: just ci format-assess
- name: Lint
diff --git a/.justfile b/.justfile
index 9ae185c..9c7d7d3 100644
--- a/.justfile
+++ b/.justfile
@@ -51,7 +51,7 @@ alias wc := run-watch-containerized
[private]
assess-quick:
- {{ just_cmd }} lint check test-cover-quick spell
+ {{ just_cmd }} lint check test-cover-quick spell schema-lint
[private]
assess-run-quick:
@@ -219,8 +219,8 @@ mutate-single *cargo_test_args:
# Tag HEAD with version from Cargo.toml
[script, group: 'assess']
tag commit="HEAD": update
- if [ "{{ last_tag }}" = "{{ manifest_version }}" ]; then
- echo "Last tag {{ last_tag }} and manifest ({{ manifest_version }}) already match"
+ if [ "{{ last_local_tag }}" = "{{ manifest_version }}" ]; then
+ echo "Last tag {{ last_local_tag }} and manifest ({{ manifest_version }}) already match"
exit
elif [ "{{ manifest_version }}" != "{{ lockfile_version }}" ]; then
echo "Manifest and lockfile versions don't match: update failed?"
@@ -231,15 +231,15 @@ tag commit="HEAD": update
{{ just_cmd }} version-assess
# Verify and push
-[group: 'develop']
-push: verify
+[group: 'develop', env("JUST", "1")]
+push: verify && (version-assess "true")
git push
git push --tags
alias p := push
# Push without verifying
-[group: 'develop']
+[group: 'develop', env("JUST", "1")]
push-unsafe:
git push --no-verify
git push --tags --no-verify
@@ -355,16 +355,21 @@ alias v := verify
# Check tag-manifest consistency
[script, group: 'assess']
-version-assess: update
- if
- [ "{{ last_tag }}" != "{{ lockfile_version }}" ] \
- || [ "{{ last_tag }}" != "{{ lockfile_version }}" ]
- then
- printf 'Last tag: %s\nManifest: %s\nLockfile: %s\n' \
- "{{ last_tag }}" \
- "{{ manifest_version }}" \
- "{{ lockfile_version }}"
- exit 1
+[arg("remote", long="remote", short="r", value="true")]
+version-assess remote="false": update
+ last_remote_tag=$(
+ git ls-remote --tags --sort=-creatordate origin |
+ head -n 1 | tr -d v | cut -d / -f 3
+ )
+ printf 'Local: %s\nRemote: %s\nManifest: %s\nLockfile: %s\n' \
+ "{{ last_local_tag }}" \
+ "$last_remote_tag" \
+ "{{ manifest_version }}" \
+ "{{ lockfile_version }}"
+ test "{{ last_local_tag }}" = "{{ lockfile_version }}"
+ test "{{ last_local_tag }}" = "{{ manifest_version }}"
+ if {{ if remote == "true" { "true" } else { "false" } }}; then
+ test "{{ last_local_tag }}" = "$last_remote_tag"
fi
alias va := version-assess
@@ -379,7 +384,7 @@ alias ta := todos-assess
# Check for security advisories, unexpected licenses, allowed registries
[group: 'assess']
deny:
- cargo deny check
+ cargo-deny check
# Check for spelling mistakes
[group: 'assess']
@@ -463,7 +468,7 @@ choose:
alias ch := choose
-[script, private]
+[script, private, env("CARGO_HOME", "$HOME/.cargo")]
ci recipe:
su ci -c "just {{ recipe }}"
@@ -481,7 +486,7 @@ just_cmd_no_ts := 'just --explain --command-color green'
watch_cmd := "watchexec -qc -r -e rs,toml,html,css --color always -- "
cover_cmd := 'cargo llvm-cov --color always --ignore-filename-regex "main\.rs|log\.rs"'
-last_tag := `git tag --sort=-creatordate | head -1 | tr -d v`
+last_local_tag := `git tag --sort=-creatordate | head -n 1 | tr -d v`
manifest_version := `grep "^version" Cargo.toml | cut -d \" -f 2`
lockfile_version := ```
grep -A 1 'name = "en"' Cargo.lock \
diff --git a/Cargo.lock b/Cargo.lock
index daa0607..d0133a5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -238,7 +238,7 @@ dependencies = [
[[package]]
name = "en"
-version = "0.4.1-alpha"
+version = "0.4.0-alpha"
dependencies = [
"axum",
"serde",
diff --git a/Cargo.toml b/Cargo.toml
index a3b9a52..5c79e7d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "en"
-version = "0.4.1-alpha"
+version = "0.4.0-alpha"
description = "A non-linear writing instrument."
license = "AGPL-3.0-only"
From 297030696ef98a3f79aecbe772778b355476a18f Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 17:39:57 -0300
Subject: [PATCH 19/25] Merge planned features overview in README with the
Intro's
---
README.md | 11 ++---------
static/graph.toml | 38 ++++++++++++++++++++++++++++----------
2 files changed, 30 insertions(+), 19 deletions(-)
diff --git a/README.md b/README.md
index 4248c56..960f996 100644
--- a/README.md
+++ b/README.md
@@ -14,13 +14,6 @@ See the [Documentation](https://en.jutty.dev/node/Documentation) page for instru
## Roadmap
-On a high-level, here are some things that en intends to achieve at some point:
+For a high-level view of what's in the future for en, see the [What's ahead section](https://en.jutty.dev/node/Introduction/#What's) of the docs Introduction.
-1. Separate 'en' the server from 'en' the source-to-source translator. This would allow using en's markup syntax as a standalone compile-to-HTML language, effectively creating an "en cli" that should also have options to make it more practical to manipulate a graph, such as adding new nodes or querying your graph
-3. Multifile graphs, with _optional_ TOML frontmatter
-2. Make en more fitting to the 'note taking' use case
-3. Multigraph, with the server being capable to let the user choose which graph to render and with inter-graph connections
-4. Different rendering modes such as to a static website, to PDF or EPUB (with paper-friendly metadata)
-5. Stateful and stateless online graph editing with 'export to TOML'
-
-For a more detailed outline of what's planned for the future of en, along with what's already been completed, see the [roadmap](https://en.jutty.dev/node/Roadmap).
+For a more detailed outline of what's planned, along with what's already been completed, see the [roadmap](https://en.jutty.dev/node/Roadmap).
diff --git a/static/graph.toml b/static/graph.toml
index efd69d4..bc51702 100644
--- a/static/graph.toml
+++ b/static/graph.toml
@@ -23,11 +23,13 @@ Because your en graph is defined in simple plain-text files, you can add new pag
en is in its infancy. Right now, most of the work is focused on making the markup syntax more robust. Some interesting features planned include:
- Multi-file graphs, including single-file node definitions with TOML frontmatter
-- Richer node connection metrics and sorting
-- Builtin and custom connection kinds with special rendering styles
-- More render formats: static website, single page and PDF/EPUB formats
+- Richer node connection metadata, with builtin connection kinds and special rendering styles
+- More node metrics, sorting options and full-text search
+- New render formats: static website, single page and PDF/EPUB formats with paper-friendly metadata
- JSON schema for language server integration
-- Full-text search
+- Separating the server from the source-to-source translator, allowing en's markup syntax to be used as a standalone compile-to-HTML language
+- Adding CLI options to make it more practical to manipulate a graph, such as adding new nodes or querying your graphagarn
+- Hypergraphs, enabling cross-graph references and letting the user choose which graph to render
If you like what you see and are curious about en's future, take a look at the |roadmap| for a more comprehensive view of what else is to come.
@@ -179,7 +181,7 @@ en take as its input one or more graph files containing your node definitions. I
- A |TOML| representation of the graph that can be used as a basis to generate other, adapted graphs
- A JSON representation of the graph that can be further analyzed and interpreted with third-party tools
-The output formats are not simply a translation of the input, but enrich them. Among other things, they transpile en's |markup syntax|Syntax into HTML, add metrics about how nodes are connected and flag which missing nodes are most sought after by dangling connections.
+The output formats are not simply a translation of the input, but enrich them. Among other things, they translate en's |markup syntax|Syntax into HTML, add metrics about how nodes are connected and flag which missing nodes are most sought after by dangling connections.
"""
[nodes.SourceBuild]
@@ -907,26 +909,33 @@ text = """
## Upcoming
-## `v0.5.0-alpha`
+### v0.5.0-alpha
- [ ] Docs for custom assets and templates
- [ ] Custom kind for connections
- [ ] Hide tree leaves from the top level
- [x] Fix anchors containing `/` and `#` considered node IDs
- [x] Fix `PreFormat` blocks rendering HTML tags
-## `v0.6.0-alpha`
+### v0.6.0-alpha
- [ ] Custom header include
-## `v0.7.0-alpha`
+### v0.7.0-alpha
- [ ] Frontmatter format
- [ ] Multi-file graphs
-## `v0.8.0-alpha`
+### v0.8.0-alpha
- [ ] Full-text search
-
+
+
+_See |Changelog|Roadmap#Changelog| for previously released versions._
+
+
+
## Backlog
+These changes are planned, but have not been assigned to an upcoming release yet.
+
### Syntax
- [ ] Improve nested formatting
- [ ] Invert where redirects are set
@@ -1064,6 +1073,15 @@ text = """
- [x] Further centralize state
+
+
+
+## Changelog
+
+### |v0.4.0-alpha|https://codeberg.org/jutty/en/releases/tag/v0.4.0-alpha|
+
+- Embed assets and welcome graph into the binary
+- Source custom templates and assets from `./templates` and `./static/public`
"""
[meta.config]
From 4d7ae2e7290ce1d7e1e80e9bde9e248776e31327 Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 17:40:05 -0300
Subject: [PATCH 20/25] Tweak paragraph and header spacing
---
static/public/assets/style.css | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/static/public/assets/style.css b/static/public/assets/style.css
index 8afbacd..b92a157 100644
--- a/static/public/assets/style.css
+++ b/static/public/assets/style.css
@@ -34,6 +34,7 @@ p:not(.quote-citation), section li {
section p {
line-height: 2;
+ margin: 4px 0 16px;
}
pre {
@@ -178,7 +179,7 @@ main h2 {
h1, h2, h3, h4, h5, h6 {
font-weight: 1;
- margin: 10px 0;
+ margin: 10px 0 5px;
overflow-wrap: break-word;
}
From 26ba5c90e642eb932e673bb6e8e7be024c0ecc0f Mon Sep 17 00:00:00 2001
From: jutty
Date: Thu, 4 Jun 2026 22:26:08 -0300
Subject: [PATCH 21/25] Update README for v0.5 node structure
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 960f996..2416d37 100644
--- a/README.md
+++ b/README.md
@@ -10,10 +10,10 @@ You can learn more and see what en looks like by visiting the [homepage](https:/
## Install and run
-See the [Documentation](https://en.jutty.dev/node/Documentation) page for instructions and how to install and start using en.
+See the [Get Started](https://en.jutty.dev/node/GetStarted) page for instructions and how to install and start using en.
## Roadmap
-For a high-level view of what's in the future for en, see the [What's ahead section](https://en.jutty.dev/node/Introduction/#What's) of the docs Introduction.
+For a high-level view of what's in the future for en, see the [What's ahead section](https://en.jutty.dev/node/Introduction#What's) of the docs Introduction.
For a more detailed outline of what's planned, along with what's already been completed, see the [roadmap](https://en.jutty.dev/node/Roadmap).
From a38d93ba2ac0b3eb4e0c2d10be770493550f58fa Mon Sep 17 00:00:00 2001
From: jutty
Date: Fri, 5 Jun 2026 21:31:43 -0300
Subject: [PATCH 22/25] schema: Move node schema to $defs
---
static/graph-schema.json | 56 ++++++++++++++++++++--------------------
1 file changed, 28 insertions(+), 28 deletions(-)
diff --git a/static/graph-schema.json b/static/graph-schema.json
index bbf6cc3..95c177a 100644
--- a/static/graph-schema.json
+++ b/static/graph-schema.json
@@ -6,7 +6,33 @@
"type": "object",
"$defs": {
"node": {
-
+ "type": "object",
+ "title": "Node",
+ "description": "A node object.",
+ "example": "[nodes.Earth]\ntext = \"Earth is a planet of the solar system.\"",
+ "default": null,
+ "properties": {
+ "text": {
+ "type": "string",
+ "description": "The text content of this node."
+ },
+ "title": {
+ "type": "string",
+ "description": "The node display title, useful to make it distinct from the ID.",
+ "default": "The node's ID."
+ },
+ "listed": {
+ "type": "boolean",
+ "description": "Whether this node is shown in listing pages.",
+ "default": true
+ },
+ "redirect": {
+ "type": "string",
+ "description": "A node ID to where any requests for this node will be redirected.",
+ "default": null
+ }
+ },
+ "additionalProperties": false
}
},
"properties": {
@@ -23,33 +49,7 @@
"default": null,
"type": "object",
"additionalProperties": {
- "type": "object",
- "title": "Node",
- "description": "A node object.",
- "example": "[nodes.Earth]\ntext = \"Earth is a planet of the solar system.\"",
- "default": null,
- "properties": {
- "text": {
- "type": "string",
- "description": "The text content of this node."
- },
- "title": {
- "type": "string",
- "description": "The node display title, useful to make it distinct from the ID.",
- "default": "The node's ID."
- },
- "listed": {
- "type": "boolean",
- "description": "Whether this node is shown in listing pages.",
- "default": true
- },
- "redirect": {
- "type": "string",
- "description": "A node ID to where any requests for this node will be redirected.",
- "default": null
- }
- },
- "additionalProperties": false
+ "$ref": "#/$defs/node"
},
"propertyNames": {
"pattern": "^[^-][^!@#$%^&*;:/~| \\]\\[()\\\\]*$"
From 0987269307d59a95c57803e5f2ae2607686edea7 Mon Sep 17 00:00:00 2001
From: jutty
Date: Sun, 7 Jun 2026 04:00:36 -0300
Subject: [PATCH 23/25] Add flake.nix
---
.gitignore | 1 +
Cargo.lock | 8 +++---
flake.lock | 26 ++++++++++++++++++
flake.nix | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 111 insertions(+), 4 deletions(-)
create mode 100644 flake.lock
create mode 100644 flake.nix
diff --git a/.gitignore b/.gitignore
index ea8c4bf..d787b70 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/target
+/result
diff --git a/Cargo.lock b/Cargo.lock
index d0133a5..06b5d60 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -86,9 +86,9 @@ dependencies = [
[[package]]
name = "bitflags"
-version = "2.12.1"
+version = "2.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
+checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
[[package]]
name = "block-buffer"
@@ -469,9 +469,9 @@ dependencies = [
[[package]]
name = "ignore"
-version = "0.4.25"
+version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
+checksum = "b915661dd01db3f05050265b2477bcc6527b3792388e2749b41623cc592be67d"
dependencies = [
"crossbeam-deque",
"globset",
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 0000000..8f095cd
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,26 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1780453794,
+ "narHash": "sha256-bXMRa9VTsHSPXL4Cw8R6JJLQeY3Y/IP4+YJCYVmQ7FY=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "6b316287bae2ee04c9b93c8c858d930fd07d7338",
+ "type": "github"
+ },
+ "original": {
+ "id": "nixpkgs",
+ "ref": "nixos-26.05",
+ "type": "indirect"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/flake.nix b/flake.nix
new file mode 100644
index 0000000..bfac211
--- /dev/null
+++ b/flake.nix
@@ -0,0 +1,80 @@
+{
+ description = "A non-linear writing instrument.";
+
+ inputs.nixpkgs.url = "nixpkgs/nixos-26.05";
+
+ outputs = { nixpkgs, self }: let
+ name = "en";
+ version = "0.4.0";
+
+ supportedSystems = [
+ "x86_64-linux"
+ "aarch64-linux"
+ ];
+
+ forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
+
+ nixpkgsFor = forAllSystems (system: import nixpkgs {
+ inherit system;
+ });
+
+ in {
+ packages = forAllSystems (system: let
+ pkgs = nixpkgsFor.${system};
+ in {
+ default = pkgs.rustPlatform.buildRustPackage {
+ inherit name version;
+ src = ./.;
+
+ cargoHash =
+ "sha256-"
+ + "em229cShq/IShRnxlp5mgcIu7pIOf0LflV8Pw0lLUEY=";
+ };
+ });
+
+ apps = forAllSystems (system: {
+ default = {
+ type = "app";
+ program =
+ "${self.packages.${system}.default}/bin/en";
+ };
+ });
+
+ devShells = forAllSystems (system:
+ let pkgs = nixpkgsFor.${system}; in {
+ default = pkgs.mkShell {
+ buildInputs = with pkgs; [
+ rustup
+ just
+ watchexec
+ cargo-deny
+ cargo-llvm-cov
+ cargo-mutants
+ go-tools
+ typos
+ taplo
+ ];
+ };
+ }
+ );
+
+
+ nixosModules.bot = { config, lib, system, ... }: {
+ options.within.services.en.enable =
+ lib.mkEnableOption "enable en server";
+
+ config = lib.mkIf config.within.services.en.enable {
+ systemd.services.en = {
+ wantedBy = [ "multi-user.target" ];
+ serviceConfig = {
+ Restart = "always";
+ ExecStart =
+ "${self.packages."${system}".default}/bin/en";
+ };
+ };
+ };
+ };
+
+
+ };
+}
From 1aef9d6ee6a778fdcff142799ee70156e4880dbc Mon Sep 17 00:00:00 2001
From: jutty
Date: Sun, 7 Jun 2026 05:19:25 -0300
Subject: [PATCH 24/25] Draft customization docs
---
static/graph.toml | 58 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
diff --git a/static/graph.toml b/static/graph.toml
index bc51702..df35c11 100644
--- a/static/graph.toml
+++ b/static/graph.toml
@@ -842,6 +842,64 @@ en must differentiate node anchors from outgoing URLs:
It does this by looking at the destination and checking if it contains a `/` or `:`. That's one more reason to avoid these characters in your node IDs.
"""
+[nodes.Customization]
+text = """
+You can customize several aspects of en by overriding its default templates, styles and other assets.
+
+## The `public` directory
+
+The `static/public` directory is searched by en in the current working directory and can also be |passed as a command line option|CLI. All files placed inside this directory will be served by the en server as static files. You can create directories and organize files as you see fit, and then reference them through custom templates and includes.
+
+If you place a file in a default path, it will override the default. Namely:
+
+- `static/public/assets/favicon.svg`: Website icon as seen on tabs and other UI elements
+- `static/public/assets/style.css`: Main CSS stylesheet
+- `static/public/assets/fonts/fonts.css`: Fonts CSS index mapping the default families `sans`, `serifed`, `mono`, `prose` and `title`. The `prose` family is used for paragraphs such as in the node text content, while the `sans` family is used for UI elements such as the navigation bar and footer.
+
+The en server supports a variety of file types including plain text; data formats such as CSV, TOML and JSON; various font and image formats; and document formats such as PDF and EPUB. If you want to serve a file with a mimetype that is not included among the |builtin ones|https://codeberg.org/jutty/en/src/branch/main/src/router/handlers/mime.rs|, you can use the `mimes` |configuration option|Configuration#mimes|. If you don't, the file will be served with mimetype `application/octet-stream`, which may or may not work depending on what you are actually serving and how it's being consumed.
+
+## Styles
+
+You can override the default CSS and fonts using custom CSS files.
+
+To completely override the default style, you can place your replacement at the default path as explained in the previous section.
+
+If you just want to add small customizations, this can be better accomplished by adding a CSS file as part of a custom headers include, as explained in the next section.
+
+## Templates
+
+en uses the Tera|https://keats.github.io/tera templating engine, which provides several features for creating your own templates.
+
+When starting up, en will look for a `templates` directory in the current working directory. For each template, it looks up the corresponding filename inside this directory. If it can't find one, it will fallback to a default template.
+
+For a list of templates along with their names, see the |templates directory|https://codeberg.org/jutty/en/src/branch/main/templates| in the source code repository.
+
+See the |Tera documentation|https://keats.github.io/tera/docs for a more extensive description of the available features for writing templates.
+
+### Includes
+
+Overriding an entire template can be very verbose, considering the default templates attempt to handle various edge cases.
+
+To make it easier to override the most common use cases, the following templates are consumed as "includes" in specific parts of the main templates if placed inside the `templates` directory with the suffix `.include.html`:
+
+- `header`: Included at the end of the default templates' base header
+- `post-body`: Included after the body in the default base template
+- `favicon`: Replaces the default favicon code
+- `styles`: Replaces the default CSS links
+- `footer`: Replaces the footer
+- `navigation`: Replaces the navigation bar
+- `index-header`: Replaces the block showing the title and subtitle of the website in the index page
+- `index-list`: Replaces the block showing the list of nodes in the index page
+
+For example, to override the block in the header of all pages that globally sets the CSS stylesheets, you can drop a file at `templates/styles.include.html` containing something like:
+
+`
+
+
+`
+
+"""
+
[nodes.Graph]
text = """
A graph is a data structure composed of connected (and disconnected) nodes.
From f8708f2500e5154c1ea4adb5214ae6e95056b314 Mon Sep 17 00:00:00 2001
From: jutty
Date: Mon, 8 Jun 2026 00:52:48 -0300
Subject: [PATCH 25/25] Add several new lints from latest Clippy versions
---
Cargo.toml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/Cargo.toml b/Cargo.toml
index 5c79e7d..833205b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -54,6 +54,7 @@ cast_sign_loss = "warn"
checked_conversions = "warn"
clear_with_drain = "warn"
cloned_instead_of_copied = "warn"
+cmp_owned = "warn"
coerce_container_to_any = "warn"
collapsible_else_if = "allow"
collapsible_if = "allow"
@@ -70,6 +71,7 @@ doc_link_code = "warn"
doc_link_with_quotes = "warn"
doc_markdown = "warn"
doc_paragraphs_missing_punctuation = "warn"
+double_must_use = "warn"
duration_suboptimal_units = "warn"
empty_drop = "warn"
empty_enum_variants_with_brackets = "warn"
@@ -80,6 +82,7 @@ error_impl_error = "warn"
exit = "warn"
expect_used = "warn"
expl_impl_clone_on_copy = "warn"
+explicit_counter_loop = "warn"
explicit_deref_methods = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
@@ -107,6 +110,7 @@ index_refutable_slice = "warn"
indexing_slicing = "warn"
inefficient_to_string = "warn"
infinite_loop = "warn"
+int_plus_one = "warn"
integer_division = "warn"
integer_division_remainder_used = "warn"
into_iter_without_iter = "warn"
@@ -114,6 +118,7 @@ invalid_upcast_comparisons = "warn"
ip_constant = "warn"
iter_filter_is_ok = "warn"
iter_filter_is_some = "warn"
+iter_kv_map = "warn"
iter_not_returning_iterator = "warn"
iter_on_empty_collections = "warn"
iter_on_single_items = "warn"
@@ -129,14 +134,19 @@ literal_string_with_formatting_args = "warn"
lossy_float_literal = "warn"
macro_use_imports = "warn"
manual_assert = "warn"
+manual_checked_ops = "warn"
manual_ilog2 = "warn"
manual_instant_elapsed = "warn"
+manual_is_multiple_of = "warn"
manual_is_power_of_two = "warn"
manual_is_variant_and = "warn"
manual_let_else = "warn"
manual_midpoint = "warn"
manual_non_exhaustive = "allow"
+manual_option_zip = "warn"
+manual_pop_if = "warn"
manual_string_new = "warn"
+manual_take = "warn"
many_single_char_names = "warn"
map_err_ignore = "warn"
map_with_unused_argument_over_ranges = "warn"
@@ -179,15 +189,19 @@ option_option = "warn"
panic_in_result_fn = "warn"
path_buf_push_overwrite = "warn"
pathbuf_init_then_push = "warn"
+possible_missing_else = "warn"
pub_underscore_fields = "warn"
pub_without_shorthand = "warn"
+question_mark = "warn"
range_minus_one = "warn"
range_plus_one = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
read_zero_byte_vec = "warn"
redundant_clone = "warn"
+redundant_closure = "warn"
redundant_closure_for_method_calls = "warn"
+redundant_iter_cloned = "warn"
redundant_pub_crate = "warn"
redundant_test_prefix = "warn"
redundant_type_annotations = "warn"
@@ -195,6 +209,7 @@ ref_binding_to_reference = "warn"
ref_option = "warn"
ref_option_ref = "warn"
renamed_function_params = "warn"
+replace_box = "warn"
rest_pat_in_fully_bound_structs = "warn"
return_and_then = "warn"
return_self_not_must_use = "warn"
@@ -235,12 +250,17 @@ unchecked_time_subtraction = "warn"
unicode_not_nfc = "warn"
uninlined_format_args = "warn"
unnecessary_box_returns = "warn"
+unnecessary_cast = "warn"
unnecessary_debug_formatting = "warn"
+unnecessary_fold = "warn"
unnecessary_join = "warn"
unnecessary_literal_bound = "warn"
+unnecessary_option_map_or_else = "warn"
+unnecessary_result_map_or_else = "warn"
unnecessary_self_imports = "warn"
unnecessary_semicolon = "warn"
unnecessary_struct_initialization = "warn"
+unnecessary_trailing_comma = "warn"
unnecessary_wraps = "warn"
unneeded_field_pattern = "warn"
unnested_or_patterns = "warn"
@@ -257,6 +277,8 @@ unwrap_in_result = "warn"
unwrap_used = "warn"
used_underscore_binding = "warn"
used_underscore_items = "warn"
+useless_concat = "warn"
+useless_conversion = "warn"
useless_let_if_seq = "warn"
verbose_file_reads = "warn"
volatile_composites = "warn"