-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 961 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 961 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "dxlink"
version = "0.1.5"
edition = "2024"
license = "MIT"
description = "Library for trading through tastytrade's API"
repository = "https://github.com/joaquinbejar/DXlink"
include = [
"benches/**/*",
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"examples/**/*.rs",
"tests/**/*.rs",
"Makefile",
"rust-toolchain.toml",
"Draws/**/*.png",
"Docker/**/*.Dockerfile",
"Docker/**/*.yml",
]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio-tungstenite = { version = "0.28", features = ["native-tls"] }
tokio = { version = "1.48", features = ["full"] }
futures-util = "0.3"
tracing = "0.1"
[dev-dependencies]
warp = { version = "0.4", features = ["websocket", "server"] }
chrono = "0.4"
[[test]]
name = "tests"
path = "tests/integration/mod.rs"
[workspace]
members = [
"examples/miscellaneous",
]
[workspace.dependencies]
dxlink = { path = "." }