mirror of
https://github.com/zensical/zensical.git
synced 2026-05-03 01:20:33 +00:00
201c615cd0
Signed-off-by: squidfunk <martin.donath@squidfunk.com>
79 lines
2.5 KiB
TOML
79 lines
2.5 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/*"]
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
rust-version = "1.86"
|
|
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.2", path = "crates/zensical-serve" }
|
|
zensical-watch = { version = "0.0.5", 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"
|
|
httparse = "1.10"
|
|
httpdate = "1.0"
|
|
indicatif = "0.18"
|
|
matchit = "0.9.2"
|
|
mio = "1.2.0"
|
|
minijinja = "2.19.0"
|
|
minijinja-contrib = "2.19.0"
|
|
notify = "8.2"
|
|
percent-encoding = "2.3"
|
|
regex = "1.12.3"
|
|
sha1_smol = "1.0"
|
|
slab = "0.4.12"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
thiserror = "2.0.18"
|
|
tungstenite = { version = "0.29.0", default-features = false }
|
|
tracing = { version = "0.1" }
|
|
tracing-chrome = "0.7"
|
|
tracing-subscriber = "0.3.23"
|
|
walkdir = "2.5"
|
|
webbrowser = "1.2.1"
|
|
zrx = "0.0.24"
|
|
|
|
[workspace.dependencies.pyo3]
|
|
version = "0.28.3"
|
|
features = ["extension-module", "abi3-py310"]
|