v6/Cargo.toml

66 lines
2.1 KiB
TOML
Raw Normal View History

workspace = { members = [
"crates/compute_graph",
"crates/compute_graph_macros",
"crates/derive_test",
] }
2024-11-02 11:17:32 -04:00
2022-12-10 13:15:32 -05:00
[package]
name = "v7"
2022-12-10 13:15:32 -05:00
version = "0.1.0"
edition = "2024"
2022-12-10 13:15:32 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-01-03 13:41:31 -05:00
[build-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2022-12-10 13:15:32 -05:00
[dependencies]
anyhow = "1.0.95"
2025-01-02 13:15:06 -05:00
base64 = "0.22.1"
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.23", features = ["cargo"] }
compute_graph = { path = "crates/compute_graph" }
2024-12-31 18:58:47 -05:00
debounced = "0.2.0"
env_logger = "0.11.6"
2024-12-31 18:58:47 -05:00
futures = "0.3.31"
2025-01-02 13:15:06 -05:00
grass = { version = "0.13.4", default-features = false, git = "https://git.shadowfacts.net/shadowfacts/grass.git", branch = "custom-global-variables" }
grass_compiler = { version = "0.13.4", features = [
"custom-builtin-fns",
], git = "https://git.shadowfacts.net/shadowfacts/grass.git", branch = "custom-global-variables" }
html5ever = "0.27.0"
2025-01-03 12:38:43 -05:00
http = "1.2.0"
http-body = "1.0.1"
http-body-util = "0.1.2"
2025-01-02 19:19:39 -05:00
hyper = { version = "1.5.2", features = ["server", "http1"] }
2025-01-03 12:38:43 -05:00
hyper-tungstenite = "0.17.0"
2025-01-02 19:19:39 -05:00
hyper-util = { version = "0.1.10", features = ["tokio", "service"] }
log = "0.4.22"
markup5ever_rcdom = "0.3.0"
2024-12-31 18:58:47 -05:00
notify = "7.0.0"
once_cell = "1.20.2"
pulldown-cmark = "0.12.2"
2025-01-12 15:48:13 -05:00
pulldown-cmark-escape = "0.11.0"
regex = "1.11.1"
2025-01-11 23:33:13 -05:00
rss = { version = "2.0.11", features = ["atom"] }
2022-12-10 13:15:32 -05:00
serde = { version = "1.0", features = ["derive"] }
2025-01-12 15:48:13 -05:00
splash-rs = { version = "0.3.1", git = "https://git.shadowfacts.net/shadowfacts/splash-rs.git" }
tera = "1.20.0"
tokio = { version = "1.42.0", features = ["full"] }
2024-12-31 18:58:47 -05:00
tokio-stream = "0.1.17"
toml = "0.8.19"
2025-01-03 12:38:43 -05:00
tower = { version = "0.5.2", features = ["steer", "util"] }
2025-01-02 16:10:47 -05:00
tower-http = { version = "0.6.2", features = ["fs"] }
2025-01-12 15:48:13 -05:00
tree-sitter-bash = "0.23.3"
tree-sitter-c = "0.23.4"
tree-sitter-css = "0.23.2"
tree-sitter-elixir = "0.3.3"
tree-sitter-highlight = "0.24.6"
tree-sitter-html = "0.23.2"
tree-sitter-java = "0.23.5"
tree-sitter-javascript = "0.23.1"
tree-sitter-json = "0.24.8"
tree-sitter-objc = "3.0.2"
tree-sitter-rust = "0.23.2"
unicode-normalization = "0.1.24"