[package]
edition = "2021"
name = "ffmt"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, configurable Fortran formatter with Fypp, Doxygen, and OpenACC/OpenMP support"
readme = "README.md"
keywords = [
"fortran",
"formatter",
"linter",
"code-quality",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/sbryngelson/ffmt"
[lib]
name = "ffmt"
path = "src/lib.rs"
[[bin]]
name = "ffmt"
path = "src/main.rs"
[[test]]
name = "case_norm"
path = "tests/case_norm.rs"
[[test]]
name = "classifier"
path = "tests/classifier.rs"
[[test]]
name = "config_integration"
path = "tests/config_integration.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "reader"
path = "tests/reader.rs"
[[test]]
name = "scope"
path = "tests/scope.rs"
[[test]]
name = "whitespace"
path = "tests/whitespace.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ignore]
version = "0.4"
[dependencies.rayon]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"