selda-sqlite 0.1.7.2 → 0.1.7.3
raw patch · 2 files changed
+30/−14 lines, 2 filesdep ~bytestringdep ~textdep ~timenew-uploader
Dependency ranges changed: bytestring, text, time
Files
- LICENSE +21/−0
- selda-sqlite.cabal +9/−14
+ LICENSE view
@@ -0,0 +1,21 @@+MIT License++Copyright (c) 2017-2019 Anton Ekblad++Permission is hereby granted, free of charge, to any person obtaining a copy+of this software and associated documentation files (the "Software"), to deal+in the Software without restriction, including without limitation the rights+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell+copies of the Software, and to permit persons to whom the Software is+furnished to do so, subject to the following conditions:++The above copyright notice and this permission notice shall be included in all+copies or substantial portions of the Software.++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE+SOFTWARE.
selda-sqlite.cabal view
@@ -1,20 +1,17 @@ name: selda-sqlite-version: 0.1.7.2+version: 0.1.7.3 synopsis: SQLite backend for the Selda database EDSL. description: Allows the Selda database EDSL to be used with SQLite databases. homepage: https://github.com/valderman/selda license: MIT+license-file: LICENSE author: Anton Ekblad maintainer: anton@ekblad.cc category: Database build-type: Simple cabal-version: >=1.10 -flag haste- default: False- description: Package is being installed for Haste.- library exposed-modules: Database.Selda.SQLite@@ -26,15 +23,13 @@ build-depends: base >=4.9 && <5 , selda >=0.5 && <0.6- , text >=1.0 && <1.3- if !flag(haste)- build-depends:- bytestring >=0.10 && <0.12- , direct-sqlite >=2.2 && <2.4- , directory >=1.2.2 && <1.4- , exceptions >=0.8 && <0.11- , time >=1.5 && <1.12- , uuid-types >=1.0 && <1.1+ , text >=1.0 && <2.2+ , bytestring >=0.10 && <0.13+ , direct-sqlite >=2.2 && <2.4+ , directory >=1.2.2 && <1.4+ , exceptions >=0.8 && <0.11+ , time >=1.5 && <1.13+ , uuid-types >=1.0 && <1.1 hs-source-dirs: src default-language: