name: ptr-poker version: 0.1 synopsis: Pointer poking action construction and composition toolkit homepage: https://github.com/nikita-volkov/ptr-poker bug-reports: https://github.com/nikita-volkov/ptr-poker/issues author: Nikita Volkov maintainer: Nikita Volkov copyright: (c) 2020 Nikita Volkov license: MIT license-file: LICENSE build-type: Simple cabal-version: >=1.10 source-repository head type: git location: git://github.com/nikita-volkov/ptr-poker.git library hs-source-dirs: library default-extensions: BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, InstanceSigs, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, StrictData, TemplateHaskell, TupleSections, TypeApplications, TypeFamilies, TypeOperators, UnboxedTuples, ViewPatterns default-language: Haskell2010 exposed-modules: PtrPoker.Poke PtrPoker.Write PtrPoker.Size other-modules: PtrPoker.ByteString PtrPoker.Ffi PtrPoker.IO.ByteString PtrPoker.IO.Prim PtrPoker.Prelude PtrPoker.UncheckedShifting c-sources: cbits/dtoa.c cbits/int_encoding.c cbits/itoa.c build-depends: base >=4.11 && <5, bytestring >=0.10 && <0.12, scientific >=0.3.6.2 && <0.4, text >=1 && <2 test-suite test type: exitcode-stdio-1.0 hs-source-dirs: test default-extensions: BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, InstanceSigs, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, StrictData, TemplateHaskell, TupleSections, TypeApplications, TypeFamilies, TypeOperators, UnboxedTuples, ViewPatterns default-language: Haskell2010 main-is: Main.hs build-depends: hedgehog >=1.0.3 && <2, numeric-limits >=0.1 && <0.2, ptr-poker, rerebase >=1.10.0.1 && <2