Skip to content

Commit bfe398b

Browse files
committed
Use clj-commons prefix for byte-streams and primitive-math
1 parent 00dbabb commit bfe398b

15 files changed

+18
-18
lines changed

src/aleph/http/client.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(ns aleph.http.client
22
(:require
33
[clojure.tools.logging :as log]
4-
[byte-streams :as bs]
4+
[clj-commons.byte-streams :as bs]
55
[manifold.deferred :as d]
66
[manifold.stream :as s]
77
[aleph.http.core :as http]

src/aleph/http/client_middleware.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[manifold.deferred :as d]
99
[manifold.stream :as s]
1010
[manifold.executor :as ex]
11-
[byte-streams :as bs]
11+
[clj-commons.byte-streams :as bs]
1212
[clojure.edn :as edn]
1313
;; leave this dependency to make sure that HeaderMap is already compiled
1414
[aleph.http.core :as http])

src/aleph/http/core.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
[clojure.tools.logging :as log]
77
[clojure.set :as set]
88
[clojure.string :as str]
9-
[byte-streams :as bs]
10-
[byte-streams.graph :as g]
9+
[clj-commons.byte-streams :as bs]
10+
[clj-commons.byte-streams.graph :as g]
1111
[potemkin :as p]
1212
[clojure.java.io :as io])
1313
(:import

src/aleph/http/encoding.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(ns aleph.http.encoding
22
(:require
3-
[byte-streams :as bs]
4-
[primitive-math :as p])
3+
[clj-commons.byte-streams :as bs]
4+
[clj-commons.primitive-math :as p])
55
(:import
66
[io.netty.buffer
77
ByteBuf

src/aleph/http/multipart.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(ns aleph.http.multipart
22
(:require
33
[clojure.core :as cc]
4-
[byte-streams :as bs]
4+
[clj-commons.byte-streams :as bs]
55
[aleph.http.encoding :refer [encode]]
66
[aleph.http.core :as http-core]
77
[aleph.netty :as netty]

src/aleph/http/server.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[aleph.http.core :as http]
44
[aleph.netty :as netty]
55
[aleph.flow :as flow]
6-
[byte-streams :as bs]
6+
[clj-commons.byte-streams :as bs]
77
[clojure.tools.logging :as log]
88
[clojure.string :as str]
99
[manifold.deferred :as d]

src/aleph/netty.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
(ns aleph.netty
22
(:refer-clojure :exclude [flush])
33
(:require
4-
[byte-streams :as bs]
4+
[clj-commons.byte-streams :as bs]
55
[clojure.tools.logging :as log]
66
[manifold.deferred :as d]
77
[manifold.executor :as e]
88
[manifold.stream :as s]
99
[manifold.stream.core :as manifold]
10-
[primitive-math :as p]
10+
[clj-commons.primitive-math :as p]
1111
[clojure
1212
[string :as str]
1313
[set :as set]]

test/aleph/http/multipart_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[aleph.http :as http]
44
[aleph.http.core :as core]
55
[aleph.http.multipart :as mp]
6-
[byte-streams :as bs]
6+
[clj-commons.byte-streams :as bs]
77
[clojure.edn :as edn]
88
[clojure.test :refer [deftest testing is]]
99
[manifold.deferred :as d]

test/aleph/http_continue_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[netty :as netty]
66
[flow :as flow]
77
[tcp :as tcp]]
8-
[byte-streams :as bs]
8+
[clj-commons.byte-streams :as bs]
99
[manifold.deferred :as d]
1010
[manifold.stream :as s]
1111
[clojure.string :as str])

test/aleph/http_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[ssl :as ssl]
1111
[tcp :as tcp]]
1212
[aleph.http.core :as core]
13-
[byte-streams :as bs]
13+
[clj-commons.byte-streams :as bs]
1414
[manifold.deferred :as d]
1515
[manifold.stream :as s])
1616
(:import

0 commit comments

Comments
 (0)