-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (37 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
members = ["model", "connect/core", "connect/nonblocking"]
resolver = "2"
[workspace.package]
version = "4.1.0" # NOTE remembe to update this and sbelow dependencies for byteserde and byteserde_derive
authors = ["Softstream <[email protected]>"]
readme = "readme.md"
license-file = "LICENSE"
edition = "2021"
rust-version = "1.69"
repository = "https://github.com/softstream-link/soupbintcp"
keywords = ["exchange", "protocol"]
categories = ["API bindings"]
[workspace.dependencies]
# derive macros
byteserde = { version = "0.6" }
byteserde_derive = { version = "0.6" }
byteserde_types = { version = "0.6" }
derive_more = "0.99" # try_into, etc
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# project modules
soupbintcp_model = { version = "4.1.0", path = "./model" }
soupbintcp_connect_core = { version = "4.1.0", path = "./connect/core" }
soupbintcp_connect_nonblocking = { version = "4.1.0", path = "./connect/nonblocking" }
#
links_nonblocking = { version = "0.1" }
links_core = { version = "0.1" } # unit tests only
# other dependencies
bytes = { version = "1.5" } # networking
spin = { version = "0.9" } # spinlocks
# logging
log = { version = "0.4" }
env_logger = { version = "0.10" }
colored = { version = "2.0" }
# benches
criterion = { version = "0.5" }