mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 09:09:19 +08:00
Inline csv dependency
This commit is contained in:
parent
c10c4edb84
commit
db87de4086
@ -36,6 +36,7 @@ bitflags = "1.0"
|
|||||||
lru-cache = "0.1"
|
lru-cache = "0.1"
|
||||||
chrono = { version = "0.4", optional = true }
|
chrono = { version = "0.4", optional = true }
|
||||||
serde_json = { version = "1.0", optional = true }
|
serde_json = { version = "1.0", optional = true }
|
||||||
|
csv = { version = "0.15", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempdir = "0.3"
|
tempdir = "0.3"
|
||||||
@ -46,10 +47,6 @@ regex = "0.2"
|
|||||||
path = "libsqlite3-sys"
|
path = "libsqlite3-sys"
|
||||||
version = "0.9"
|
version = "0.9"
|
||||||
|
|
||||||
[dependencies.csv]
|
|
||||||
version = "0.15"
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
[[test]]
|
[[test]]
|
||||||
name = "config_log"
|
name = "config_log"
|
||||||
harness = false
|
harness = false
|
||||||
|
@ -35,7 +35,7 @@ use types::{FromSql, FromSqlError, ToSql, ValueRef};
|
|||||||
// \-> vtab.xbestindex
|
// \-> vtab.xbestindex
|
||||||
// stmt.query().next();
|
// stmt.query().next();
|
||||||
// \-> vtab.xopen
|
// \-> vtab.xopen
|
||||||
// |-> let cursor: Cursor = ...; // on the heap
|
// |-> let cursor: VTabCursor = ...; // on the heap
|
||||||
// |-> cursor.xfilter or xnext
|
// |-> cursor.xfilter or xnext
|
||||||
// |-> cursor.xeof
|
// |-> cursor.xeof
|
||||||
// \-> if not eof { cursor.column or xrowid } else { cursor.xclose }
|
// \-> if not eof { cursor.column or xrowid } else { cursor.xclose }
|
||||||
|
Loading…
Reference in New Issue
Block a user