-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 976 Bytes
/
Cargo.toml
File metadata and controls
39 lines (34 loc) · 976 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
[package]
name = "client-rust-fix"
version = "0.1.8"
edition = "2021"
rust-version = "1.86"
[dependencies]
chrono = "0.4.38"
jwtk = "0.3.0"
native-tls = "0.2.11"
parking_lot = "0.12.2"
quickfix = "0.1.4"
quickfix-msg44 = "0.1.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = "1.8.0"
log = "0.4.21"
simplelog = "0.12.2"
auditable = "0.2.0"
rustfmt = "0.10.0"
clap = { version = "3.2.25", features = ["derive"] }
tungstenite = { version = "0.20.1", features = ["native-tls"] }
http = "1.1.0"
url = "=2.2.2"
# Removed unused 'io' crate to avoid pulling in crates requiring unstable Rust
# Removed 'cargo-msrv' which is a development tool not needed at runtime
termcolor = "1.4.1"
dotenvy = "0.15.7"
base64 = "0.22.1"
[package.metadata.clippy]
# Disable the needless_return lint globally
# Note: This key does not exist in clippy.toml directly, hence inline attributes are preferred.
[dev-dependencies]
serial_test = "3.2.0"
mockall = "0.12.1"