Explorar el Código

Switch to supersnappy, update frosty

Zed hace 5 años
padre
commit
320cb47bce
Se han modificado 3 ficheros con 5 adiciones y 5 borrados
  1. 2 2
      nitter.nimble
  2. 1 1
      src/redis_cache.nim
  3. 2 2
      src/routes/rss.nim

+ 2 - 2
nitter.nimble

@@ -18,10 +18,10 @@ requires "regex#2e32fdc"
 requires "nimcrypto >= 0.4.11"
 requires "markdown#abdbe5e"
 requires "packedjson#7198cc8"
-requires "snappy#d13e2cc"
+requires "supersnappy#1.1.5"
 requires "redpool#57aeb25"
 requires "https://github.com/zedeus/redis#94bcbf1"
-requires "https://github.com/disruptek/frosty#0.2.3"
+requires "https://github.com/disruptek/frosty#0.3.1"
 
 
 # Tasks

+ 1 - 1
src/redis_cache.nim

@@ -1,5 +1,5 @@
 import asyncdispatch, times, strutils, tables
-import redis, redpool, frosty, snappy
+import redis, redpool, frosty, supersnappy
 
 import types, api
 

+ 2 - 2
src/routes/rss.nim

@@ -1,4 +1,4 @@
-import asyncdispatch, strutils, tables, times, sequtils, hashes, snappy
+import asyncdispatch, strutils, tables, times, sequtils, hashes, supersnappy
 
 import jester
 
@@ -7,7 +7,7 @@ import ../query
 
 include "../views/rss.nimf"
 
-export times, hashes, snappy
+export times, hashes, supersnappy
 
 proc showRss*(req: Request; hostname: string; query: Query): Future[Rss] {.async.} =
   var profile: Profile