-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
35 lines (33 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "ff_rithmic_api"
version = "0.2.4"
edition = "2021"
license = "MIT"
authors = ["Kevin Monaghan <[email protected]>"]
description = "Rithmic api for easy connection to rithmic RProtocol servers"
repository = "https://github.com/BurnOutTrader/ff_rithmic_api"
keywords = ["rithmic", "rust", "crate", "api"]
categories = ["api-bindings"]
readme = "README.md"
exclude = [
"rithmic_credentials_example.toml", # Exclude all TOML files in this directory
".gitignore",
"LICENSE.md",
".github/",
"src/test.rs",
"build.rs",
"servers.toml"
]
[dependencies]
serde = { version = "1.0.210", features = ["derive"] }
toml = "0.8.19"
strum_macros = "0.26.4"
prost ="0.13.3"
prost-build = "0.13.2"
futures-util = "0.3.30"
tokio = { version = "1.40.0", features = ["full"] }
thiserror = "1.0.63"
tungstenite = "0.23.0"
tokio-tungstenite = { version = "0.23.1", features = ["stream", "native-tls"] }
rkyv = { version = "0.7.45", features = ["std", "alloc", "validation"] }
dashmap = "6.1.0"