Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 13 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ web-sys = { version = "0.3.4", features = ["console"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
dirs = { version = "1" }
hyper = { version = "0.14" }
hyper = { version = "0.14.11", features = ["client", "http2", "server", "tcp"] }
tokio = { version = "1.7", features = ["io-util", "rt-multi-thread", "net"] }

[dev-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion mm2src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ winapi = "0.3"
chrono = { version = "0.4", features = ["wasmbind"] }
getrandom = { version = "0.2", features = ["js"] } # see https://docs.rs/getrandom/0.2.0/getrandom/#webassembly-support
gstuff = { version = "0.7", features = ["nightly"] }
indexmap = "=1.6.0" # see https://github.com/KomodoPlatform/atomicDEX-API/issues/1042
js-sys = "0.3.27"
serde_bencode = "0.2"
wasm-bindgen = { version = "0.2.50", features = ["serde-serialize", "nightly"] }
Expand All @@ -69,7 +70,7 @@ chrono = "0.4"
crossterm = "0.20"
gstuff = { version = "0.7", features = ["crossterm", "nightly"] }
hdrhistogram = { version = "7.0", default-features = false, features = ["sync"] }
hyper = { version = "0.14", features = ["client", "http2", "server", "tcp"] }
hyper = { version = "0.14.11", features = ["client", "http2", "server", "tcp"] }
# using webpki-tokio to avoid rejecting valid certificates
# got "invalid certificate: UnknownIssuer" for https://ropsten.infura.io on iOS using default-features
hyper-rustls = { version = "0.22", default-features = false, features = ["webpki-tokio"] }
Expand Down
4 changes: 2 additions & 2 deletions mm2src/lp_ordermatch/best_orders.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub async fn process_best_orders_p2p_request(
let orders = match orderbook.ordered.get(&pair) {
Some(orders) => orders,
None => {
log::warn!("No orders for pair {:?}", pair);
log::debug!("No orders for pair {:?}", pair);
continue;
},
};
Expand Down Expand Up @@ -94,7 +94,7 @@ pub async fn process_best_orders_p2p_request(
}
},
None => {
log::warn!("No order with uuid {:?}", ordered.uuid);
log::debug!("No order with uuid {:?}", ordered.uuid);
continue;
},
};
Expand Down