]> gitweb.factorcode.org Git - factor.git/commitdiff
mongodb: fix bson usings
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 26 Jan 2023 00:29:43 +0000 (16:29 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 26 Jan 2023 00:29:43 +0000 (16:29 -0800)
extra/mongodb/benchmark/benchmark.factor
extra/mongodb/operations/operations.factor
extra/mongodb/tuple/persistent/persistent.factor

index 2918b249342973cc58e3c4d7a21b21db78ae8217..3ff598bac62939edf2b0bad1bd9c8cecb89bb2dc 100644 (file)
@@ -1,7 +1,7 @@
-USING: accessors assocs bson.reader bson.writer calendar
-formatting hashtables io io.encodings.binary
-io.streams.byte-array kernel math math.parser
-mongodb.driver namespaces ranges sequences strings tools.time ;
+USING: accessors assocs bson calendar formatting hashtables io
+io.encodings.binary io.streams.byte-array kernel math
+math.parser mongodb.driver namespaces ranges sequences strings
+tools.time ;
 FROM: mongodb.driver => find ;
 FROM: memory => gc ;
 IN: mongodb.benchmark
index 3c499b0fd9e2729004f765942ecc78c69f09395f..9598fafdbbb04cfaa64aee315920abc4b451b5c1 100644 (file)
@@ -1,9 +1,8 @@
-USING: accessors assocs bson.reader bson.writer byte-arrays
+USING: accessors assocs bson bson.private byte-arrays
 byte-vectors combinators formatting endian fry io
 io.encodings.private io.encodings.binary io.encodings.string
 io.encodings.utf8 io.encodings.utf8.private io.files kernel
-locals math mongodb.msg namespaces sequences uuid
-bson.writer.private ;
+locals math mongodb.msg namespaces sequences uuid ;
 
 FROM: mongodb.connection => connection-buffer ;
 FROM: alien => byte-length ;
index c0dcc5dbbb1608a940ca424fe1b906ec6147b056..9c222a5c31a1e5ea2eadaf0d3a2688ee3383417d 100644 (file)
@@ -1,4 +1,4 @@
-USING: accessors assocs bson.constants bson.writer combinators
+USING: accessors assocs bson bson.constants combinators
 combinators.short-circuit constructors continuations hashtables
 kernel linked-assocs mirrors mongodb.tuple.collection
 mongodb.tuple.state namespaces sequences words ;