Bump supported Crystal version

pull/791/head
Omar Roth 5 years ago
parent eef66de68c
commit da07f99d3d
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2

@ -19,6 +19,6 @@ dependencies:
github: kemalcr/kemal
version: ~> 0.26.0
crystal: 0.31.0
crystal: 0.31.1
license: AGPLv3

@ -237,16 +237,3 @@ class HTTP::Client
response
end
end
struct Crystal::ThreadLocalValue(T)
@values = Hash(Thread, T).new
def get(&block : -> T)
th = Thread.current
if !@values[th]?
@values[th] = yield
else
@values[th]
end
end
end

Loading…
Cancel
Save