├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── cabal.haskell-ci ├── managed.cabal ├── release.nix ├── shell.nix ├── src └── Control │ └── Monad │ ├── Managed.hs │ └── Managed │ └── Safe.hs └── stack.yaml /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal.haskell-ci: -------------------------------------------------------------------------------- 1 | -- Configuration for haskell-ci 2 | 3 | branches: main 4 | -------------------------------------------------------------------------------- /managed.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/managed.cabal -------------------------------------------------------------------------------- /release.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/release.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- 1 | (import ./release.nix).managed.env 2 | -------------------------------------------------------------------------------- /src/Control/Monad/Managed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/src/Control/Monad/Managed.hs -------------------------------------------------------------------------------- /src/Control/Monad/Managed/Safe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gabriella439/managed/HEAD/src/Control/Monad/Managed/Safe.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-6.0 2 | --------------------------------------------------------------------------------