ZFS 0.0 → 0.0.1
raw patch · 1 files changed
+12/−11 lines, 1 filesdep −haskell98dep ~base
Dependencies removed: haskell98
Dependency ranges changed: base
Files
- ZFS.cabal +12/−11
ZFS.cabal view
@@ -1,29 +1,30 @@ name: ZFS-version: 0.0+version: 0.0.1++license: PublicDomain+author: Amr Sabry, R. Kent Dybvig, Simon L. Peyton Jones, Oleg Kiselyov++stability: Experimental+category: Monads synopsis: Oleg's Zipper FS description: A implementation of a zipper filesystem using delimited continuations.-+ . Zipper-based File/Operating system with threading and exceptions all realized via delimited continuations. There are no unsafe operations, no GHC (let alone) Unix threads, no concurrency problems. Our threads can't even do IO and can't- mutate any global state -- and the type system sees to it.--category: Monads-license: PublicDomain+ mutate any global state - and the type system sees to it. -author: Amr Sabry, R. Kent Dybvig, Simon L. Peyton Jones, Oleg Kiselyov-maintainer: Gwern Branwen <gwern0@gmail.com-extra-source-files: zfs.pdf, README+data-files: zfs.pdf, README Cabal-Version: >= 1.2 Tested-With: GHC==6.8.2 build-type: Simple Library- build-depends: base, haskell98, mtl, unix, network, containers, CC-delcont <= 0.2+ build-depends: base>3, mtl, unix, network, containers, CC-delcont <= 0.2 hs-source-dirs: src exposed-modules: ZFS, ZipperM - ghc-options: -O2 -Wall -optl-Wl,-s+ ghc-options: -Wall ghc-prof-options: -prof -auto-all