Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] Add New Binance Websocket Source #11

Merged
merged 36 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c75f157
init
warittornc Feb 2, 2024
b5d1a89
reformat
warittornc Feb 2, 2024
56a24dc
minor cleanup
warittornc Feb 2, 2024
2f01e52
change package name
warittornc Feb 2, 2024
0517535
minor cleanup
warittornc Feb 2, 2024
ee05365
checkpoint
warittornc Feb 5, 2024
8f19455
checkpoint
warittornc Feb 5, 2024
bba1526
minor cleanup
warittornc Feb 5, 2024
f00e402
minor cleanup
warittornc Feb 5, 2024
d09a40b
minor change
warittornc Feb 5, 2024
858c4b3
organize imports
warittornc Feb 5, 2024
7eaa92f
minor cleanup
warittornc Feb 5, 2024
21e2031
minor cleanup
warittornc Feb 6, 2024
d304e88
fix
warittornc Feb 6, 2024
f6038c5
fix
warittornc Feb 6, 2024
8b41fcb
fix linting
warittornc Feb 6, 2024
4052ff9
cleanup cache
warittornc Feb 6, 2024
e3d5206
fix and cleanup
warittornc Feb 6, 2024
ac49660
fixed import format
warittornc Feb 6, 2024
c06cb9e
cleanup and fixed
warittornc Feb 7, 2024
e2337e5
add panic msg
warittornc Feb 7, 2024
c65e6d8
renamed variable for clarity and added comment
warittornc Feb 7, 2024
6451ce1
fixed clippy
warittornc Feb 7, 2024
156d749
fixed
warittornc Feb 12, 2024
8473881
change from set_pending to set_batch_pending
warittornc Feb 12, 2024
ef206be
fixed
warittornc Feb 12, 2024
6143cbc
remove tests
warittornc Feb 12, 2024
4c06bdb
cleanup
warittornc Feb 12, 2024
6ef569f
fixed clippy
warittornc Feb 12, 2024
bfac8e0
restructure out cache
warittornc Feb 13, 2024
156d330
fix
warittornc Feb 13, 2024
36e072b
add core
warittornc Feb 13, 2024
e423854
changes
warittornc Feb 13, 2024
4fc5f11
change cache to generic
warittornc Feb 14, 2024
b77f62e
fix clippy
warittornc Feb 14, 2024
04e1a9a
fix clippy
warittornc Feb 14, 2024
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
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,4 @@ Cargo.lock
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb


.vscode/

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[workspace]
members = ["price-adapter-raw", "price-adapter"]
members = ["price-adapter-raw", "price-adapter", "binance"]
warittornc marked this conversation as resolved.
Show resolved Hide resolved
resolver = "2"

[workspace.dependencies]
price-adapter = { version = "0.1.8", path = "price-adapter" }
price-adapter-raw = { version = "0.1.8", path = "price-adapter-raw" }
binance = { version = "0.1.8", path = "binance" }
warittornc marked this conversation as resolved.
Show resolved Hide resolved
1 change: 1 addition & 0 deletions binance/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
warittornc marked this conversation as resolved.
Show resolved Hide resolved
Loading
Loading