wayver's git archive


an obsidian renderer
git clone https://git.wayver.dev/sable

sable-vault/Cargo.toml@main

raw
Date Commit Message Author Files + -
2026-02-23 01:55 initial mvp wayverd 139 17808 0
...

1[package]
2name = "sable-vault"
3version = "0.1.0"
4edition = "2024"
5
6workspace = ".."
7
8[features]
9default = ["git"]
10
11git = ["dep:which"]
12
13base = ["dep:nom"]
14canvas = []
15
16[dependencies]
17sable-frontmatter = { path = "../sable-frontmatter" }
18
19camino.workspace = true
20convert_case.workspace = true
21jiff.workspace = true
22miette.workspace = true
23parking_lot.workspace = true
24petgraph.workspace = true
25regex.workspace = true
26serde.workspace = true
27serde_json.workspace = true
28slug.workspace = true
29thiserror.workspace = true
30tracing.workspace = true
31walkdir.workspace = true
32
33nom = { workspace = true, optional = true }
34which = { workspace = true, optional = true }
35