build: update build deps

This commit is contained in:
Price Hiller 2024-08-16 01:58:20 -05:00
parent c2d9489b35
commit 4d79579baf
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
4 changed files with 474 additions and 438 deletions

878
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -6,17 +6,17 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
comrak = "0.24.1"
syntect = { version = "5.1.0", default-features = false, features = ["default-fancy"]}
anyhow = "1.0.75"
clap = { version = "4.4.0", features = ["derive"] }
chrono = { version = "0.4.26", default-features = false, features = ["clock", "serde"] }
serde = { version = "1.0.188", features = ["derive"]}
serde_yaml = "0.9.25"
serde_json = "1.0.105"
lazy_static = "1.4.0"
tera = "1.19.0"
comrak = "0.26.0"
syntect = { version = "5.2.0", default-features = false, features = ["default-fancy"]}
anyhow = "1.0.86"
clap = { version = "4.5.16", features = ["derive"] }
chrono = { version = "0.4.38", default-features = false, features = ["clock", "serde"] }
serde = { version = "1.0.208", features = ["derive"]}
serde_yaml = "0.9.34"
serde_json = "1.0.125"
lazy_static = "1.5.0"
tera = "1.20.0"
# Treesitter Deps below
tree-sitter = "0.22.0"
tree-sitter-highlight = "0.22.2"
tree-sitter-loader = "0.22.2"
tree-sitter = "0.22.6"
tree-sitter-highlight = "0.22.6"
tree-sitter-loader = "0.22.6"

View File

@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1712791164,
"narHash": "sha256-3sbWO1mbpWsLepZGbWaMovSO7ndZeFqDSdX0hZ9nVyw=",
"lastModified": 1723637854,
"narHash": "sha256-med8+5DSWa2UnOqtdICndjDAEjxr5D7zaIiK4pn0Q7c=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "1042fd8b148a9105f3c0aca3a6177fd1d9360ba5",
"rev": "c3aa7b8938b17aebd2deecf7be0636000d62a2b9",
"type": "github"
},
"original": {

View File

@ -68,7 +68,7 @@ impl HeadingAdapter for HeaderLinkAdapter {
#[derive(Debug)]
pub struct MDComrakSettings<'a> {
pub options: ComrakOptions,
pub options: ComrakOptions<'a>,
pub plugins: ComrakPlugins<'a>,
}