cabal-version: 2.2 -- This file has been generated from package.yaml by hpack version 0.37.0. -- -- see: https://github.com/sol/hpack name: reduxwise version: 0.1.0.0 synopsis: Static analysis tool for Rust embedded systems complexity description: ReduxWise analyzes Rust projects for real-time embedded system scheduling. It detects IO operations, yield points, and computational complexity to help classify functions for embedded schedulers. . Features: . * Analyzes IO operations (I2C, SPI, Flash, UART, Network, ADC, GPIO) * Detects yield points (.await, yield_now) * Measures computational complexity (loops, branches, arithmetic) * Classifies functions as IO-bound or CPU-bound * Generates JSON reports for scheduler integration * Parallel processing for fast analysis . See README for usage examples and documentation. category: Development, Static Analysis, Embedded homepage: https://github.com/vertexclique/reduxwise bug-reports: https://github.com/vertexclique/reduxwise/issues author: Theo M. Bulut maintainer: vertexclique@gmail.com copyright: 2025 Theo M. Bulut license: BSD-3-Clause license-file: LICENSE build-type: Simple extra-source-files: README.md extra-doc-files: CHANGELOG.md source-repository head type: git location: https://github.com/vertexclique/reduxwise library exposed-modules: Lib ReduxWise.Analysis.Types ReduxWise.CLI.Parser ReduxWise.Project.Discovery ReduxWise.Report.Generator ReduxWise.Rust.Parser ReduxWise.Rust.Patterns other-modules: Paths_reduxwise autogen-modules: Paths_reduxwise hs-source-dirs: src ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints build-depends: aeson >=2.0 && <2.3 , async ==2.2.* , base >=4.7 && <5 , bytestring >=0.10 && <0.13 , containers >=0.6 && <0.8 , directory ==1.3.* , filepath >=1.4 && <1.6 , mtl >=2.2 && <2.4 , optparse-applicative >=0.16 && <0.19 , regex-tdfa ==1.3.* , text >=1.2 && <2.2 , time >=1.9 && <1.15 , yaml ==0.11.* default-language: Haskell2010 executable reduxwise-exe main-is: Main.hs other-modules: Paths_reduxwise autogen-modules: Paths_reduxwise hs-source-dirs: app ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N build-depends: aeson >=2.0 && <2.3 , async ==2.2.* , base >=4.7 && <5 , bytestring >=0.10 && <0.13 , containers >=0.6 && <0.8 , directory ==1.3.* , filepath >=1.4 && <1.6 , mtl >=2.2 && <2.4 , optparse-applicative >=0.16 && <0.19 , reduxwise , regex-tdfa ==1.3.* , text >=1.2 && <2.2 , time >=1.9 && <1.15 , yaml ==0.11.* default-language: Haskell2010 test-suite reduxwise-test type: exitcode-stdio-1.0 main-is: Spec.hs other-modules: Paths_reduxwise autogen-modules: Paths_reduxwise hs-source-dirs: test ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N build-depends: aeson >=2.0 && <2.3 , async ==2.2.* , base >=4.7 && <5 , bytestring >=0.10 && <0.13 , containers >=0.6 && <0.8 , directory ==1.3.* , filepath >=1.4 && <1.6 , mtl >=2.2 && <2.4 , optparse-applicative >=0.16 && <0.19 , reduxwise , regex-tdfa ==1.3.* , text >=1.2 && <2.2 , time >=1.9 && <1.15 , yaml ==0.11.* default-language: Haskell2010