75 lines
2.5 KiB
TOML
75 lines
2.5 KiB
TOML
workspace = { members = [
|
|
"crates/compute_graph",
|
|
"crates/compute_graph_macros",
|
|
"crates/derive_test",
|
|
"crates/pyftsubset",
|
|
] }
|
|
|
|
[package]
|
|
name = "v7"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["serve"]
|
|
serve = ["dep:http", "dep:http-body", "dep:http-body-util", "dep:hyper", "dep:hyper-tungstenite", "dep:hyper-util", "dep:tower-http"]
|
|
|
|
[build-dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[dependencies]
|
|
ahash = "0.8.11"
|
|
anyhow = "1.0.95"
|
|
base64 = "0.22.1"
|
|
bit-vec = "0.8.0"
|
|
bitflags = "2.7.0"
|
|
chrono = { version = "0.4.39", features = ["serde"] }
|
|
clap = { version = "4.5.23", features = ["cargo"] }
|
|
compute_graph = { path = "crates/compute_graph" }
|
|
debounced = "0.2.0"
|
|
env_logger = "0.11.6"
|
|
futures = "0.3.31"
|
|
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"
|
|
http = { version = "1.2.0", optional = true }
|
|
http-body = { version = "1.0.1", optional = true }
|
|
http-body-util = { version = "0.1.2", optional = true }
|
|
hyper = { version = "1.5.2", features = ["server", "http1"], optional = true }
|
|
hyper-tungstenite = { version = "0.17.0", optional = true }
|
|
hyper-util = { version = "0.1.10", features = ["tokio", "service"], optional = true }
|
|
log = "0.4.22"
|
|
markup5ever_rcdom = "0.3.0"
|
|
notify = "7.0.0"
|
|
once_cell = "1.20.2"
|
|
pulldown-cmark = "0.12.2"
|
|
pulldown-cmark-escape = "0.11.0"
|
|
pyftsubset = { path = "crates/pyftsubset" }
|
|
regex = "1.11.1"
|
|
rss = { version = "2.0.11", features = ["atom"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
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"] }
|
|
tokio-stream = "0.1.17"
|
|
toml = "0.8.19"
|
|
tower = { version = "0.5.2", features = ["steer", "util"] }
|
|
tower-http = { version = "0.6.2", features = ["fs"], optional = true }
|
|
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"
|