[package]
edition = "2021"
name = "fluidattacks-blends-domain"
version = "0.4.0"
authors = ["Fluid Attacks Development Team <development@fluidattacks.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blends functional core: pure AST graph to syntax graph (no_std)"
readme = "README.md"
keywords = [
"security",
"ast",
"syntax-graph",
"parsing",
]
categories = ["no-std"]
license = "MPL-2.0"
repository = "https://gitlab.com/fluidattacks/universe"
[lib]
name = "fluidattacks_blends_domain"
path = "src/lib.rs"
[dependencies.once_cell]
version = "1.21.3"
features = [
"alloc",
"race",
]
default-features = false
[dependencies.regex-automata]
version = "0.4.14"
features = [
"alloc",
"syntax",
"meta",
"perf",
"unicode",
]
default-features = false
[dependencies.strum]
version = "0.28.0"
features = ["derive"]
default-features = false
[lints.clippy]
arithmetic_side_effects = "deny"
as_conversions = "deny"
dbg_macro = "deny"
disallowed_types = "deny"
expect_used = "deny"
implicit_clone = "deny"
indexing_slicing = "deny"
inefficient_to_string = "deny"
manual_let_else = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
option_if_let_else = "deny"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
shadow_unrelated = "deny"
str_to_string = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
wildcard_imports = "deny"
[lints.clippy.all]
level = "deny"
priority = -2
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"
warnings = "deny"