fddc57d548
* Part 1: added limits feature to rusqlite dependencies. * Part 2: replace references to SQLITE_MAX_VARIABLE_NUMBER with sqlite3_limit. * Move assertion check for correct number of variables in repeat_values to before call as this is where the variable is defined. * Part 3: add tests
32 lines
547 B
TOML
32 lines
547 B
TOML
[package]
|
|
name = "mentat_db"
|
|
version = "0.0.1"
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
error-chain = "0.9.0"
|
|
itertools = "0.5.9"
|
|
lazy_static = "0.2.2"
|
|
ordered-float = "0.4.0"
|
|
time = "0.1.35"
|
|
|
|
[dependencies.rusqlite]
|
|
version = "0.10.1"
|
|
# System sqlite might be very old.
|
|
features = ["bundled", "limits"]
|
|
|
|
[dependencies.edn]
|
|
path = "../edn"
|
|
|
|
[dependencies.mentat_core]
|
|
path = "../core"
|
|
|
|
[dependencies.mentat_tx]
|
|
path = "../tx"
|
|
|
|
[dependencies.mentat_tx_parser]
|
|
path = "../tx-parser"
|
|
|
|
# Should be dev-dependencies.
|
|
[dependencies.tabwriter]
|
|
version = "1.0.3"
|