← Packages / depot / Capabilities

IO.NetConnect

in depot v0.1.0

v0.1.0 is the oldest version of depot that was analysed, so there is nothing to compare it against. IO.NetConnect is a first sighting, not a change.

lib/wire/connection.march:10
7import Encode
8import Decode
9
10needs IO.NetConnect
11needs IO.Random
12
13-- ---- Configuration ----
lib/driver/db.march:20
17import Connection
18import Message
19
20needs IO.NetConnect
21needs IO.Random
22
23--- Result type shared by all connection dispatch functions.
lib/wire/decode.march:8
5
6import Message
7
8needs IO.NetConnect
9
10-- ---- Cursor helpers ----
11
lib/api/depot_db_repo.march:41
38
39needs Ffi
40needs IO.Foreign
41needs IO.NetConnect
42needs IO.Random
43needs IO.Spawn
44
lib/api/depot_migration.march:23
20import Db
21import Depot.Transaction
22
23needs IO.NetConnect
24needs IO.Random
25needs IO.Spawn
26
lib/api/depot_query.march:46
43import Build
44import Db
45
46needs IO.NetConnect
47needs IO.Random
48
49-- ---------------------------------------------------------------------------
lib/api/transaction.march:23
20import Db
21import Pool
22
23needs IO.NetConnect
24needs IO.Random
25needs IO.Spawn
26
lib/mutation/mutation_exec.march:22
19import MutationCompile
20import Db
21
22needs IO.NetConnect
23needs IO.Random
24
25--- Execute an `Insert` ADT against a live connection.
lib/wire/pool.march:10
7import Db
8import Depot.Query
9
10needs IO.NetConnect
11needs IO.Random
12needs IO.Spawn
13
lib/api/preload.march:27
24import Db
25import Pool
26
27needs IO.NetConnect
28needs IO.Random
29needs IO.Spawn
30
lib/driver/sqlite.march:26
23
24needs Ffi
25needs IO.Foreign
26needs IO.NetConnect
27needs IO.Random
28
29-- Opaque handle to a sqlite3* connection.