mirror of
https://github.com/typeable/bloodhound.git
synced 2024-12-02 06:30:29 +03:00
commit
974733bce7
@ -32,7 +32,7 @@ library
|
||||
build-depends: base >= 4.3 && <5,
|
||||
bytestring >= 0.10.0 && <0.11,
|
||||
containers >= 0.5.0.0 && <0.6,
|
||||
aeson >= 0.11.1 && <1.1,
|
||||
aeson >= 0.11.1 && <1.2,
|
||||
http-client >= 0.4.30 && <0.6,
|
||||
network-uri >= 2.6 && <2.7,
|
||||
semigroups >= 0.15 && <0.19,
|
||||
|
@ -2012,7 +2012,7 @@ instance BucketAggregation DateRangeResult where
|
||||
docCount = dateRangeDocCount
|
||||
aggs = dateRangeAggs
|
||||
|
||||
instance (FromJSON a, BucketAggregation a) => FromJSON (Bucket a) where
|
||||
instance (FromJSON a) => FromJSON (Bucket a) where
|
||||
parseJSON (Object v) = Bucket <$>
|
||||
v .: "buckets"
|
||||
parseJSON _ = mempty
|
||||
|
@ -3,7 +3,7 @@ packages:
|
||||
- '.'
|
||||
extra-deps:
|
||||
- quickcheck-properties-0.1
|
||||
|
||||
- aeson-1.1.0.0
|
||||
# - http-client-0.5.0
|
||||
# - fail-4.9.0.0
|
||||
# - http-types-0.9
|
||||
|
@ -586,7 +586,7 @@ instance ApproxEq Vers.Version where
|
||||
(=~) = (==)
|
||||
instance (ApproxEq a, Show a) => ApproxEq [a] where
|
||||
as =~ bs = and (zipWith (=~) as bs)
|
||||
instance (ApproxEq l, Show l, ApproxEq r, Show r) => ApproxEq (Either l r) where
|
||||
instance (ApproxEq l, ApproxEq r) => ApproxEq (Either l r) where
|
||||
Left a =~ Left b = a =~ b
|
||||
Right a =~ Right b = a =~ b
|
||||
_ =~ _ = False
|
||||
|
Loading…
Reference in New Issue
Block a user