├── .github └── workflows │ └── haskell.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── cabal.project ├── deriving-aeson.cabal ├── logo ├── logo.ai └── logo.png ├── src └── Deriving │ ├── Aeson.hs │ └── Aeson │ └── Stock.hs └── tests └── test.hs /.github/workflows/haskell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/.github/workflows/haskell.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | *~ 3 | .ghc.environment.* 4 | dist-newstyle/ 5 | tags 6 | TAGS 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- 1 | packages: ./ 2 | -------------------------------------------------------------------------------- /deriving-aeson.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/deriving-aeson.cabal -------------------------------------------------------------------------------- /logo/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/logo/logo.ai -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/logo/logo.png -------------------------------------------------------------------------------- /src/Deriving/Aeson.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/src/Deriving/Aeson.hs -------------------------------------------------------------------------------- /src/Deriving/Aeson/Stock.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/src/Deriving/Aeson/Stock.hs -------------------------------------------------------------------------------- /tests/test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumieval/deriving-aeson/HEAD/tests/test.hs --------------------------------------------------------------------------------