From 9e2e6cdfe331dde3a71a59515b921837837d68a0 Mon Sep 17 00:00:00 2001 From: Sebastian Rollen Date: Mon, 19 Apr 2021 16:34:08 -0400 Subject: [PATCH] upgrade alpaca version --- Cargo.lock | 44 ++++++++++++++++++++++++++++---------------- Cargo.toml | 4 ++-- 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f2a336..f6cc0ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,18 +13,19 @@ dependencies = [ [[package]] name = "alpaca" -version = "0.5.0" -source = "git+ssh://git@github.com/Overmuse/alpaca?tag=v0.5.0#e3ad373aebf78dfbb059b211e61c1dea1312448b" +version = "0.7.0" +source = "git+ssh://git@github.com/Overmuse/alpaca?tag=v0.7.0#1dd0bfd3faf13f1c402565ccf8c5602176997d7d" dependencies = [ "chrono", "futures", - "log", "reqwest", + "rust_decimal", "serde 1.0.125", "serde_json", "thiserror", "tokio", "tokio-tungstenite", + "tracing", "uuid", ] @@ -463,9 +464,9 @@ dependencies = [ [[package]] name = "httparse" -version = "1.3.6" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc35c995b9d93ec174cf9a27d425c7892722101e14993cd227fdb51d70cf9589" +checksum = "4a1ce40d6fc9764887c2fdc7305c3dcc429ba11ff981c1509416afd5697e4437" [[package]] name = "httpdate" @@ -512,9 +513,9 @@ dependencies = [ [[package]] name = "idna" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21" +checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" dependencies = [ "matches", "unicode-bidi", @@ -850,18 +851,18 @@ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" [[package]] name = "pin-project" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc174859768806e91ae575187ada95c91a29e96a98dc5d2cd9a1fed039501ba6" +checksum = "c7509cc106041c40a4518d2af7a61530e1eed0e6285296a3d8c5472806ccc4a4" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.0.6" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a490329918e856ed1b083f244e3bfe2d8c4f336407e4ea9e1a9f479ff09049e5" +checksum = "48c950132583b500556b1efd71d45b319029f2b71518d979fcc208e16b42426f" dependencies = [ "proc-macro2", "quote", @@ -1152,6 +1153,17 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2" +[[package]] +name = "rust_decimal" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca515aafa02c92f4d3c69b2f4c408f839b51b1aa938d00b15e8c0966bd22d73" +dependencies = [ + "arrayvec", + "num-traits 0.2.14", + "serde 1.0.125", +] + [[package]] name = "ryu" version = "1.0.5" @@ -1551,7 +1563,7 @@ dependencies = [ [[package]] name = "trader" -version = "1.0.0" +version = "1.0.1" dependencies = [ "alpaca", "anyhow", @@ -1640,9 +1652,9 @@ dependencies = [ [[package]] name = "utf-8" -version = "0.7.5" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05e42f7c18b8f902290b009cde6d651262f956c98bc51bca4cd1d511c9cd85c7" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "uuid" @@ -1656,9 +1668,9 @@ dependencies = [ [[package]] name = "vcpkg" -version = "0.2.11" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb" +checksum = "cbdbff6266a24120518560b5dc983096efb98462e51d0d68169895b237be3e5d" [[package]] name = "version_check" diff --git a/Cargo.toml b/Cargo.toml index 7cd8ac9..0782e8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "trader" -version = "1.0.0" +version = "1.0.1" authors = ["RollenRegistratorBot "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -alpaca = { git = "ssh://git@github.com/Overmuse/alpaca", tag = "v0.5.0" } +alpaca = { git = "ssh://git@github.com/Overmuse/alpaca", tag = "v0.7.0" } anyhow = "1.0.40" config = "0.11.0" dotenv = "0.15.0"