├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── flake.lock ├── flake.nix ├── replace-attoparsec.cabal ├── src └── Replace │ └── Attoparsec │ ├── ByteString.hs │ ├── Text.hs │ └── Text │ └── Lazy.hs └── tests ├── TestByteString.hs ├── TestText.hs ├── TestTextLazy.hs └── Tests.hs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/flake.nix -------------------------------------------------------------------------------- /replace-attoparsec.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/replace-attoparsec.cabal -------------------------------------------------------------------------------- /src/Replace/Attoparsec/ByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/src/Replace/Attoparsec/ByteString.hs -------------------------------------------------------------------------------- /src/Replace/Attoparsec/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/src/Replace/Attoparsec/Text.hs -------------------------------------------------------------------------------- /src/Replace/Attoparsec/Text/Lazy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/src/Replace/Attoparsec/Text/Lazy.hs -------------------------------------------------------------------------------- /tests/TestByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/tests/TestByteString.hs -------------------------------------------------------------------------------- /tests/TestText.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/tests/TestText.hs -------------------------------------------------------------------------------- /tests/TestTextLazy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/tests/TestTextLazy.hs -------------------------------------------------------------------------------- /tests/Tests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github-trust/replace-attoparsec/HEAD/tests/Tests.hs --------------------------------------------------------------------------------