Skip to content

Commit

Permalink
deps: update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp committed Jan 15, 2019
1 parent cc09ced commit e76bc20
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions io.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {BufReader, BufWriter} from "https://deno.land/x/net/bufio.ts";
import {Buffer, Reader, ReadResult, Writer} from "deno";
import {BufReader, BufWriter} from "https://deno.land/x/[email protected]/bufio.ts";
import {Buffer} from "deno";
import {ErrorReplyError} from "./errors.ts";

export type RedisRawReply =
Expand Down
2 changes: 1 addition & 1 deletion pipeline.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {BufReader, BufWriter} from "https://deno.land/x/net/bufio.ts";
import {BufReader, BufWriter} from "https://deno.land/x/[email protected]/bufio.ts";
import {createRequest, readReply, RedisRawReply} from "./io.ts";
import {ErrorReplyError} from "./errors.ts";
import {create, Redis} from "./redis.ts";
Expand Down
4 changes: 2 additions & 2 deletions pipeline_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {test} from "https://deno.land/x/testing/mod.ts";
import {assertEqual} from "https://deno.land/x/pretty_assert/mod.ts";
import {test} from "https://deno.land/x/testing@v0.2.6/mod.ts";
import {assertEqual} from "https://deno.land/x/pretty_assert@0.1.4/mod.ts";
import {connect} from "./redis.ts";

const addr = "127.0.0.1:6379";
Expand Down
2 changes: 1 addition & 1 deletion pubsub.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {BufReader, BufWriter} from "https://deno.land/x/net/bufio.ts";
import {BufReader, BufWriter} from "https://deno.land/x/[email protected]/bufio.ts";
import {readArrayReply, sendCommand} from "./io.ts";

export type RedisSubscription = {
Expand Down
4 changes: 2 additions & 2 deletions pubsub_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {test} from "https://deno.land/x/testing/mod.ts";
import {assertEqual} from "https://deno.land/x/pretty_assert/mod.ts"
import {test} from "https://deno.land/x/testing@v0.2.6/mod.ts";
import {assertEqual} from "https://deno.land/x/pretty_assert@0.1.4/mod.ts"
import {connect} from "./redis.ts";
import {RedisPubSubMessage} from "./pubsub.ts";

Expand Down
2 changes: 1 addition & 1 deletion redis.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Closer, Conn, dial, Reader, Writer} from "deno"
import {BufReader, BufWriter} from "https://deno.land/x/net/bufio.ts";
import {BufReader, BufWriter} from "https://deno.land/x/[email protected]/bufio.ts";
import {ConnectionClosedError} from "./errors.ts";
import {psubscribe, RedisSubscription, subscribe} from "./pubsub.ts";
import {RedisRawReply, sendCommand} from "./io.ts";
Expand Down
4 changes: 2 additions & 2 deletions redis_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {connect} from "./redis.ts";
import {setFilter, test} from "https://deno.land/x/testing/mod.ts"
import {assertEqual} from "https://deno.land/x/pretty_assert/mod.ts"
import {setFilter, test} from "https://deno.land/x/testing@v0.2.6/mod.ts"
import {assertEqual} from "https://deno.land/x/pretty_assert@0.1.4/mod.ts"
import {args} from "deno";

if (args.length > 1) {
Expand Down

0 comments on commit e76bc20

Please sign in to comment.