1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Add dependencies' comments

This commit is contained in:
Roman Zeyde 2020-11-23 20:33:14 +02:00
parent 0464a9a285
commit 2842a1c7c3
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB

View File

@ -17,7 +17,9 @@ env_logger = "0.7"
hyper = "0.10" hyper = "0.10"
log = "0.4" log = "0.4"
prometheus = { version = "0.10", features = ["process"] } prometheus = { version = "0.10", features = ["process"] }
protobuf = "=2.14.0" # due to https://github.com/stepancheg/rust-protobuf/blob/master/CHANGELOG.md#2150---2020-06-21 (for Rust 1.41.1 compatibility) # keeping older protobuf due to https://github.com/stepancheg/rust-protobuf/blob/master/CHANGELOG.md#2150---2020-06-21 (for Rust 1.41.1 compatibility)
protobuf = "=2.14.0"
# cannot update to latest rocksdb due to https://github.com/rust-rocksdb/rust-rocksdb/commit/3e223d15919e4e31e50af0dc3d52439a4635852c (for Rust 1.41.1 compatibility)
rocksdb = { git = "https://github.com/romanz/rust-rocksdb", rev = "9f639dd7cd378569a96a5824b09ea03104cadfff", default-features = false } rocksdb = { git = "https://github.com/romanz/rust-rocksdb", rev = "9f639dd7cd378569a96a5824b09ea03104cadfff", default-features = false }
rust-crypto = "0.2" rust-crypto = "0.2"
serde = "1.0" serde = "1.0"