2017-01-26 00:13:56 +00:00
|
|
|
[package]
|
|
|
|
name = "mentat_db"
|
|
|
|
version = "0.0.1"
|
2017-02-20 17:35:32 +00:00
|
|
|
workspace = ".."
|
2017-01-26 00:13:56 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2017-11-21 16:24:08 +00:00
|
|
|
error-chain = { git = "https://github.com/rnewman/error-chain", branch = "rnewman/sync" }
|
|
|
|
itertools = "0.7"
|
2017-05-03 19:53:16 +00:00
|
|
|
lazy_static = "0.2"
|
2017-11-21 16:24:08 +00:00
|
|
|
ordered-float = "0.5"
|
2017-05-03 19:53:16 +00:00
|
|
|
time = "0.1"
|
2017-01-26 00:13:56 +00:00
|
|
|
|
|
|
|
[dependencies.rusqlite]
|
2017-11-21 16:24:08 +00:00
|
|
|
version = "0.12"
|
2017-01-26 00:13:56 +00:00
|
|
|
# System sqlite might be very old.
|
2017-03-13 16:39:19 +00:00
|
|
|
features = ["bundled", "limits"]
|
2017-01-26 00:13:56 +00:00
|
|
|
|
|
|
|
[dependencies.edn]
|
|
|
|
path = "../edn"
|
|
|
|
|
2017-02-04 00:51:13 +00:00
|
|
|
[dependencies.mentat_core]
|
|
|
|
path = "../core"
|
|
|
|
|
2017-01-26 00:13:56 +00:00
|
|
|
[dependencies.mentat_tx]
|
|
|
|
path = "../tx"
|
|
|
|
|
|
|
|
[dependencies.mentat_tx_parser]
|
|
|
|
path = "../tx-parser"
|
2017-02-08 22:04:32 +00:00
|
|
|
|
|
|
|
# Should be dev-dependencies.
|
|
|
|
[dependencies.tabwriter]
|
|
|
|
version = "1.0.3"
|