chir.rs/Cargo.toml

102 lines
2.6 KiB
TOML

[workspace]
members = [
"chir-rs-castore",
"chir-rs-client",
"chir-rs-config",
"chir-rs-db",
"chir-rs-fe",
"chir-rs-gemini",
"chir-rs-http",
"chir-rs-http-api",
"chir-rs-misc",
]
resolver = "2"
[package]
name = "chir-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
chir-rs-castore = { version = "0.1.0", path = "chir-rs-castore" }
chir-rs-config = { version = "0.1.0", path = "chir-rs-config" }
chir-rs-db = { version = "0.1.0", path = "chir-rs-db" }
chir-rs-gemini = { version = "0.1.0", path = "chir-rs-gemini" }
chir-rs-http = { version = "0.1.0", path = "chir-rs-http" }
color-eyre = { version = "0.6.3", features = ["issue-url"] }
dotenvy = "0.15.7"
eyre = "0.6.12"
sentry = { version = "0.34.0", default-features = false, features = [
"backtrace",
"contexts",
"debug-images",
"panic",
"metrics",
"reqwest",
"rustls",
] }
sentry-eyre = "0.2.0"
sentry-tracing = { version = "0.34.0", features = ["backtrace"] }
tokio = { version = "1.41.1", features = [
"macros",
"rt-multi-thread",
"signal",
] }
tracing = "0.1.41"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
[lints.rust]
deprecated-safe = "forbid"
elided_lifetimes_in_paths = "warn"
explicit_outlives_requirements = "warn"
impl-trait-overcaptures = "warn"
keyword-idents-2024 = "forbid"
let-underscore-drop = "warn"
macro-use-extern-crate = "deny"
meta-variable-misuse = "deny"
missing-abi = "forbid"
missing-copy-implementations = "warn"
missing-debug-implementations = "deny"
missing-docs = "warn"
missing-unsafe-on-extern = "deny"
non-local-definitions = "warn"
redundant-lifetimes = "warn"
single-use-lifetimes = "warn"
trivial-casts = "warn"
trivial-numeric-casts = "warn"
unit-bindings = "deny"
unnameable-types = "warn"
unreachable-pub = "warn"
unsafe-code = "forbid"
unused-crate-dependencies = "warn"
unused-extern-crates = "warn"
unused-import-braces = "warn"
unused-lifetimes = "warn"
unused-macro-rules = "warn"
unused-qualifications = "warn"
variant-size-differences = "warn"
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
module-name-repetitions = "allow"
alloc-instead-of-core = "warn"
allow-attributes-without-reason = "deny"
assertions-on-result-states = "forbid"
clone-on-ref-ptr = "warn"
empty-drop = "warn"
expect-used = "deny"
inline-asm-x86-att-syntax = "forbid"
missing-docs-in-private-items = "warn"
panic = "deny"
panic-in-result-fn = "forbid"
rc-buffer = "warn"
rc-mutex = "deny"
unwrap-used = "forbid"
[profile.release]
codegen-units = 1
lto = true
debug = "full"
strip = "none"