mirror of
https://github.com/zensical/zensical.git
synced 2026-09-26 16:25:38 +00:00
111 lines
3.2 KiB
TOML
111 lines
3.2 KiB
TOML
# Copyright (c) 2025-2026 Zensical and contributors
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
# All contributions are certified under the DCO
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to
|
|
# deal in the Software without restriction, including without limitation the
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
# IN THE SOFTWARE.
|
|
|
|
[workspace]
|
|
resolver = "3"
|
|
members = ["crates/*"]
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
strip = "symbols"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
rust-version = "1.89"
|
|
homepage = "https://github.com/zensical/zensical"
|
|
documentation = "https://github.com/zensical/zensical"
|
|
repository = "https://github.com/zensical/zensical"
|
|
authors = ["Zensical <contributors@zensical.org>"]
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[workspace.lints.clippy]
|
|
all = { level = "warn", priority = -1 }
|
|
pedantic = { level = "warn", priority = -1 }
|
|
|
|
[workspace.dependencies]
|
|
zensical-serve = { version = "0.0.8", path = "crates/zensical-serve" }
|
|
zensical-watch = { version = "0.0.6", path = "crates/zensical-watch" }
|
|
|
|
ahash = "0.8"
|
|
anyhow = "1.0.102"
|
|
ariadne = "0.6.0"
|
|
base64 = "0.22"
|
|
crossbeam = "0.8"
|
|
file-id = "0.2"
|
|
fluent-uri = "0.4"
|
|
globset = "0.4.18"
|
|
html5gum = { version = "0.8.4", default-features = false }
|
|
html-escape = "0.2.14"
|
|
httparse = "1.10"
|
|
httpdate = "1.0"
|
|
icu_casemap = "2.2.0"
|
|
icu_locale_core = "2.2.0"
|
|
icu_normalizer = "2.2.0"
|
|
indicatif = "0.18"
|
|
matchit = "0.9.2"
|
|
mio = "1.2.0"
|
|
minijinja = "2.19.0"
|
|
minijinja-contrib = "2.19.0"
|
|
notify = "8.2"
|
|
oxc_allocator = "0.81.0"
|
|
oxc_codegen = "0.81.0"
|
|
oxc_parser = "0.81.0"
|
|
oxc_sourcemap = "=4.0.5"
|
|
oxc_span = "0.81.0"
|
|
percent-encoding = "2.3"
|
|
regex = "1.12.3"
|
|
resvg = { version = "0.48.1", default-features = false, features = [
|
|
"raster-images",
|
|
"text",
|
|
] }
|
|
skrifa = "0.44.0"
|
|
saphyr = "0.0.6"
|
|
sha1_smol = "1.0"
|
|
slab = "0.4.12"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
sha2 = "0.10.9"
|
|
svgtypes = "0.16.1"
|
|
swc_common = "26.0.0"
|
|
swc_css = { version = "31.0.0", features = ["minifier"] }
|
|
thiserror = "2.0.18"
|
|
tungstenite = { version = "0.29.0", default-features = false }
|
|
ureq = { version = "3.4.0", default-features = false, features = [
|
|
"gzip",
|
|
"rustls",
|
|
] }
|
|
tracing = { version = "0.1" }
|
|
tracing-chrome = "0.7"
|
|
tracing-subscriber = "0.3.23"
|
|
walkdir = "2.5"
|
|
webbrowser = "1.2.2"
|
|
|
|
[workspace.dependencies.zrx]
|
|
git = "https://github.com/zensical/zrx.git"
|
|
rev = "60793b586b9e2e2cc65b8f99c88abeda9545c3f9"
|
|
|
|
[workspace.dependencies.pyo3]
|
|
version = "0.29.0"
|
|
features = ["abi3-py310"]
|