Files
Clement Tsang 991c04adb6 ci: add back audit CI check (#2186)
Adds back the audit workflow using [`audit-check`](https://github.com/rustsec/audit-check). This also adds a drive-by update for `anyhow` to `1.0.104` since it was hitting an unsound warning.
2026-08-06 08:21:57 +00:00

28 lines
570 B
TOML

[package]
name = "schema_gen"
version = "0.1.0"
edition = "2024"
publish = false
[dependencies]
anyhow = "1.0.104"
bottom = { path = "../../", features = ["generate_schema"] }
clap = { version = "4.6.4", features = ["derive"] }
itertools = "0.15.0"
schemars = "1.2.2"
serde_json = "1.0.151"
strum = { version = "0.28.0", features = ["derive"] }
[lints.rust]
rust_2018_idioms = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"
private_intra_doc_links = "deny"
[lints.clippy]
todo = "deny"
unimplemented = "deny"
missing_safety_doc = "deny"
unwrap_used = "deny"