-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (43 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
48 lines (43 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "sql_docs"
version = "1.2.1"
edition = "2024"
description = "A crate for parsing comments from sql files and using them for documentation generation"
documentation = "https://docs.rs/sql_docs"
license = "GPL-3.0"
repository = "https://github.com/rpg-alex/sql-docs"
readme = "README.md"
keywords = ["sql", "documentation", "parser", "schema", "codegen"]
categories = [
"database",
"development-tools",
"parser-implementations",
"text-processing",
"filesystem",
]
[features]
default = []
fuzzing = []
[dependencies]
sqlparser = { git = "https://github.com/LucaCappelletti94/sqlparser-rs", branch = "dialect-derives" }
[lints.rust]
missing_docs = "forbid"
unreachable_patterns = "forbid"
unused_must_use = "forbid"
unused_import_braces = "forbid"
unconditional_recursion = "forbid"
unused_macro_rules = "forbid"
deprecated = "deny"
unsafe_code = "forbid"
[lints.clippy]
unreadable_literal = "allow"
missing_panics_doc = "allow"
struct_excessive_bools = "allow"
should_panic_without_expect = "allow"
clone_on_copy = "forbid"
unwrap_used = "deny"
expect_used = "deny"
pedantic = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
multiple_crate_versions = "allow"