├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── cabal-bounds.cabal ├── exe └── Main.hs ├── lib └── CabalBounds │ ├── Args.hs │ ├── Bound.hs │ ├── Dependencies.hs │ ├── Drop.hs │ ├── Dump.hs │ ├── HaskellPlatform.hs │ ├── Main.hs │ ├── Sections.hs │ ├── Types.hs │ ├── Update.hs │ └── VersionComp.hs └── tests ├── Main.hs ├── diffInputsWithGoldens ├── diffOutputsWithGoldens ├── goldenFiles ├── DropBothIgnoreA.cabal ├── DropBothOfAll.cabal ├── DropBothOfAllExes.cabal ├── DropBothOfExe.cabal ├── DropBothOfLib.cabal ├── DropBothOfOtherExe.cabal ├── DropBothOfTest.cabal ├── DropBothOnlyBase.cabal ├── DropUpperIgnoreA.cabal ├── DropUpperOfAll.cabal ├── DropUpperOfAllExes.cabal ├── DropUpperOfExe.cabal ├── DropUpperOfLib.cabal ├── DropUpperOfOtherExe.cabal ├── DropUpperOfTest.cabal ├── DropUpperOnlyBase.cabal ├── Dump.hs ├── Format.cabal ├── FromFile.cabal ├── Libs.hs ├── PlanFile │ └── Libs.hs ├── UpdateBothIgnoreA.cabal ├── UpdateBothOfAll.cabal ├── UpdateBothOfAllExes.cabal ├── UpdateBothOfExe.cabal ├── UpdateBothOfLibrary.cabal ├── UpdateBothOfOtherExe.cabal ├── UpdateBothOfTest.cabal ├── UpdateByHaskellPlatform.cabal ├── UpdateLowerOfAll.cabal ├── UpdateLowerOfAllExes.cabal ├── UpdateLowerOfExe.cabal ├── UpdateLowerOfLibrary.cabal ├── UpdateLowerOfOtherExe.cabal ├── UpdateLowerOfTest.cabal ├── UpdateMajor1Lower.cabal ├── UpdateMajor1LowerAndUpper.cabal ├── UpdateMajor1Upper.cabal ├── UpdateMajor2Lower.cabal ├── UpdateMajor2Upper.cabal ├── UpdateMinorLower.cabal ├── UpdateMinorLowerAndUpper.cabal ├── UpdateMinorUpper.cabal ├── UpdateOnlyMissing.cabal ├── UpdateUpperFromFile.cabal ├── UpdateUpperOfAll.cabal ├── UpdateUpperOfAllExes.cabal ├── UpdateUpperOfExe.cabal ├── UpdateUpperOfLibrary.cabal ├── UpdateUpperOfOtherExe.cabal └── UpdateUpperOfTest.cabal ├── inputFiles ├── .gitignore ├── FromFile.hs ├── hp-original.cabal ├── missing-original.cabal ├── original.cabal ├── plan.json └── setup-config-build-env │ ├── .gitignore │ ├── libs │ ├── A │ │ ├── A.cabal │ │ └── A.hs │ ├── B │ │ ├── B.cabal │ │ └── B.hs │ ├── C │ │ ├── C.cabal │ │ └── C.hs │ └── D │ │ ├── D.cabal │ │ └── D.hs │ ├── setup-config.cabal │ └── src │ ├── CabalBounds │ ├── Args.hs │ ├── Command.hs │ ├── Execute.hs │ └── Lenses.hs │ ├── ExeMain1.hs │ ├── ExeMain2.hs │ ├── TestMain1.hs │ └── TestMain2.hs └── outputFiles ├── .gitignore ├── PlanFile └── .gitignore └── SetupConfig └── .gitignore /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal-bounds.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/cabal-bounds.cabal -------------------------------------------------------------------------------- /exe/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/exe/Main.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Args.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Args.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Bound.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Bound.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Dependencies.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Dependencies.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Drop.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Drop.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Dump.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Dump.hs -------------------------------------------------------------------------------- /lib/CabalBounds/HaskellPlatform.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/HaskellPlatform.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Main.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Sections.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Sections.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Types.hs -------------------------------------------------------------------------------- /lib/CabalBounds/Update.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/Update.hs -------------------------------------------------------------------------------- /lib/CabalBounds/VersionComp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/lib/CabalBounds/VersionComp.hs -------------------------------------------------------------------------------- /tests/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/Main.hs -------------------------------------------------------------------------------- /tests/diffInputsWithGoldens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/diffInputsWithGoldens -------------------------------------------------------------------------------- /tests/diffOutputsWithGoldens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/diffOutputsWithGoldens -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothIgnoreA.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothIgnoreA.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothOfAll.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothOfAll.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothOfAllExes.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothOfAllExes.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothOfExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothOfExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothOfLib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothOfLib.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothOfOtherExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothOfOtherExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothOfTest.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothOfTest.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropBothOnlyBase.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropBothOnlyBase.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperIgnoreA.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperIgnoreA.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperOfAll.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperOfAll.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperOfAllExes.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperOfAllExes.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperOfExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperOfExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperOfLib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperOfLib.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperOfOtherExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperOfOtherExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperOfTest.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperOfTest.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/DropUpperOnlyBase.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/DropUpperOnlyBase.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/Dump.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/Dump.hs -------------------------------------------------------------------------------- /tests/goldenFiles/Format.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/Format.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/FromFile.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/FromFile.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/Libs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/Libs.hs -------------------------------------------------------------------------------- /tests/goldenFiles/PlanFile/Libs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/PlanFile/Libs.hs -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateBothIgnoreA.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateBothIgnoreA.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateBothOfAll.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateBothOfAll.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateBothOfAllExes.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateBothOfAllExes.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateBothOfExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateBothOfExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateBothOfLibrary.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateBothOfLibrary.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateBothOfOtherExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateBothOfOtherExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateBothOfTest.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateBothOfTest.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateByHaskellPlatform.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateByHaskellPlatform.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateLowerOfAll.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateLowerOfAll.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateLowerOfAllExes.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateLowerOfAllExes.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateLowerOfExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateLowerOfExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateLowerOfLibrary.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateLowerOfLibrary.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateLowerOfOtherExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateLowerOfOtherExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateLowerOfTest.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateLowerOfTest.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMajor1Lower.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMajor1Lower.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMajor1LowerAndUpper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMajor1LowerAndUpper.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMajor1Upper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMajor1Upper.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMajor2Lower.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMajor2Lower.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMajor2Upper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMajor2Upper.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMinorLower.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMinorLower.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMinorLowerAndUpper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMinorLowerAndUpper.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateMinorUpper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateMinorUpper.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateOnlyMissing.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateOnlyMissing.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateUpperFromFile.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateUpperFromFile.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateUpperOfAll.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateUpperOfAll.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateUpperOfAllExes.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateUpperOfAllExes.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateUpperOfExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateUpperOfExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateUpperOfLibrary.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateUpperOfLibrary.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateUpperOfOtherExe.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateUpperOfOtherExe.cabal -------------------------------------------------------------------------------- /tests/goldenFiles/UpdateUpperOfTest.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/goldenFiles/UpdateUpperOfTest.cabal -------------------------------------------------------------------------------- /tests/inputFiles/.gitignore: -------------------------------------------------------------------------------- 1 | setup-config 2 | -------------------------------------------------------------------------------- /tests/inputFiles/FromFile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/FromFile.hs -------------------------------------------------------------------------------- /tests/inputFiles/hp-original.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/hp-original.cabal -------------------------------------------------------------------------------- /tests/inputFiles/missing-original.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/missing-original.cabal -------------------------------------------------------------------------------- /tests/inputFiles/original.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/original.cabal -------------------------------------------------------------------------------- /tests/inputFiles/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/plan.json -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/.gitignore -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/A/A.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/libs/A/A.cabal -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/A/A.hs: -------------------------------------------------------------------------------- 1 | 2 | module A where 3 | 4 | a :: Int 5 | a = 1 6 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/B/B.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/libs/B/B.cabal -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/B/B.hs: -------------------------------------------------------------------------------- 1 | 2 | module B where 3 | 4 | b :: Int 5 | b = 2 6 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/C/C.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/libs/C/C.cabal -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/C/C.hs: -------------------------------------------------------------------------------- 1 | 2 | module C where 3 | 4 | c :: Int 5 | c = 3 6 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/D/D.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/libs/D/D.cabal -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/libs/D/D.hs: -------------------------------------------------------------------------------- 1 | 2 | module D where 3 | 4 | d :: Int 5 | d = 3 6 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/setup-config.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/setup-config.cabal -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/CabalBounds/Args.hs: -------------------------------------------------------------------------------- 1 | module CabalBounds.Args where 2 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/CabalBounds/Command.hs: -------------------------------------------------------------------------------- 1 | module CabalBounds.Command where 2 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/CabalBounds/Execute.hs: -------------------------------------------------------------------------------- 1 | module CabalBounds.Execute where 2 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/CabalBounds/Lenses.hs: -------------------------------------------------------------------------------- 1 | module CabalBounds.Lenses where 2 | -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/ExeMain1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/src/ExeMain1.hs -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/ExeMain2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/src/ExeMain2.hs -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/TestMain1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/src/TestMain1.hs -------------------------------------------------------------------------------- /tests/inputFiles/setup-config-build-env/src/TestMain2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/inputFiles/setup-config-build-env/src/TestMain2.hs -------------------------------------------------------------------------------- /tests/outputFiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/outputFiles/.gitignore -------------------------------------------------------------------------------- /tests/outputFiles/PlanFile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/outputFiles/PlanFile/.gitignore -------------------------------------------------------------------------------- /tests/outputFiles/SetupConfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-t/cabal-bounds/HEAD/tests/outputFiles/SetupConfig/.gitignore --------------------------------------------------------------------------------