conduit-vfs 0.1.0.1 → 0.1.0.2
raw patch · 1 files changed
+2/−2 lines, 1 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- conduit-vfs.cabal +2/−2
conduit-vfs.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 26cb64af68a2f077637739c3b45812922d8c482761aa7ffc07210fecc91f73ba+-- hash: 4d186f4f49fa7de0b6b2fc30db08191e3e9e0e42781693c78593f6768cdea4cb name: conduit-vfs-version: 0.1.0.1+version: 0.1.0.2 synopsis: Virtual file system for Conduit; disk, pure, and in-memory impls. description: The goal of this package is to provide a common library and the core implementations for things that can be made to look like filesystems. In this package, a "filesystem" is tree of nodes, where the leaf nodes are files and the rest are directories. A "directory" is defined as a node that contains other nodes, and those other nodes are each keyed by a name. A "file" is defined as a collection of (possibly empty) bytes. This package includes the core types for a Virtual File System (VFS) abstraction for conduit, along with three implementations. The implementations are "disk" (write to the underlying filesystem), "in-memory" (store files in an MVar), and "pure" (pass state in a State monad). Because of the nature of conduits, this library defaults to lazy implementations of various data structures, including lazy ByteStrings and lazy HashMaps. Any overhead in space should be more than warranted by the savings through just-in-time computations.