mentat/tolstoy/Cargo.toml
dependabot[bot] 32ce6d2129
Update hyper requirement from ~0.13 to ~0.14
Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version.
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](https://github.com/hyperium/hyper/compare/v0.13.0...v0.14.9)

---
updated-dependencies:
- dependency-name: hyper
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-07-02 21:20:42 +00:00

55 lines
1,011 B
TOML

[package]
edition = "2018"
name = "mentat_tolstoy"
version = "0.0.2"
workspace = ".."
authors = ["Grisha Kruglov <gkruglov@mozilla.com>"]
[features]
sqlcipher = ["rusqlite/sqlcipher"]
[dependencies]
failure = "~0.1"
futures = "~0.3"
hyper = "~0.14"
hyper-tls = "~0.4"
http = "~0.2"
log = "~0.4"
mime = "~0.3"
tokio = { version = "~0.2", features = ["full"] }
serde = "~1.0"
serde_json = "~1.0"
serde_cbor = "~0.11"
serde_derive = "~1.0"
lazy_static = "~1.4"
uuid = { version = "~0.8", features = ["v4", "serde"] }
[dependencies.rusqlite]
version = "~0.24"
features = ["limits", "bundled"]
[dependencies.edn]
path = "../edn"
[dependencies.mentat_core]
path = "../core"
[dependencies.core_traits]
path = "../core-traits"
[dependencies.mentat_db]
path = "../db"
features = ["syncable"]
[dependencies.db_traits]
path = "../db-traits"
[dependencies.tolstoy_traits]
path = "../tolstoy-traits"
[dependencies.public_traits]
path = "../public-traits"
[dependencies.mentat_transaction]
path = "../transaction"