File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
name : servant-multipart
2
- version : 0.10
2
+ version : 0.10.0.1
3
3
synopsis : multipart/form-data (e.g file upload) support for servant
4
4
description : Please see README.md
5
5
homepage : https://github.com/haskell-servant/servant-multipart#readme
@@ -25,8 +25,8 @@ library
25
25
directory,
26
26
http-media >= 0.6 && < 0.7 ,
27
27
resourcet >= 1.1 && < 1.2 ,
28
- servant >= 0.10 && < 0.11 ,
29
- servant-server >= 0.10 && < 0.11 ,
28
+ servant >= 0.10 && < 0.12 ,
29
+ servant-server >= 0.10 && < 0.12 ,
30
30
text >= 1.2 && < 1.3 ,
31
31
transformers >= 0.3 && < 0.6 ,
32
32
wai >= 3.2 && < 3.3 ,
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ data MultipartData = MultipartData
146
146
147
147
-- TODO: this is specific to Tmp. we need a version that
148
148
-- can handle Mem as well.
149
- fromRaw :: ([Param ], [File FilePath ]) -> MultipartData
149
+ fromRaw :: ([Network.Wai.Parse. Param ], [File FilePath ]) -> MultipartData
150
150
fromRaw (inputs, files) = MultipartData is fs
151
151
152
152
where is = map (\ (name, val) -> Input (dec name) (dec val)) inputs
You can’t perform that action at this time.
0 commit comments