Add market data backfilling

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-09-09 17:48:49 +03:00
parent 548a8e42d5
commit e26d2b95e7
72 changed files with 1847 additions and 1044 deletions

45
Cargo.toml Normal file
View File

@@ -0,0 +1,45 @@
[package]
name = "qrust"
version = "0.1.0"
edition = "2021"
[profile.release]
panic = 'abort'
strip = true
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.6.20"
dotenv = "0.15.0"
sqlx = { version = "0.7.1", features = [
"uuid",
"time",
"postgres",
"runtime-tokio",
] }
tokio = { version = "1.32.0", features = [
"macros",
"rt-multi-thread",
] }
serde = "1.0.188"
log = "0.4.20"
serde_json = "1.0.105"
log4rs = "1.2.0"
time = { version = "0.3.27", features = [
"serde",
] }
futures-util = "0.3.28"
reqwest = { version = "0.11.20", features = [
"json",
"serde_json",
] }
tokio-tungstenite = { version = "0.20.0", features = [
"tokio-native-tls",
"native-tls",
] }
http = "0.2.9"
governor = "0.6.0"
indexmap = "2.0.0"