-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (49 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
57 lines (49 loc) · 1.37 KB
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
48
49
50
51
52
53
54
55
56
[package]
name = "strategy_execution_engine"
version = "0.1.0"
edition = "2021"
authors = ["Joaquin Bejar <jb@taunais.com>"]
description = "A Rust library for creating and executing market order strategies with integration for Kafka, NATS, RabbitMQ, ZeroMQ, and Redis."
license = "MIT"
readme = "README.md"
repository = "https://github.com/joaquinbejar/StrategyExecutionEngine"
homepage = "https://github.com/joaquinbejar/StrategyExecutionEngine"
documentation = "https://docs.rs/strategy_execution_engine"
keywords = ["order", "execution", "strategy", "market", "redis"]
categories = ["finance", "network-programming", "asynchronous"]
exclude = [
"/examples",
"/tests",
"/target",
"/.git",
"/.github",
"/.idea",
"/.vscode",
"Cargo.lock"
]
[dependencies]
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros", "time"] }
rdkafka = "0.36.2"
futures-util = "0.3.30"
dotenv = "0.15.0"
thiserror = "1.0.60"
serde_json = "1.0.117"
serde = { version = "1.0.202", features = ["derive"] }
[dev-dependencies]
mockall = "0.12.1"
tokio-test = "0.4.4"
futures-util = "0.3.30"
async-std = "1.12.0"
lazy_static = "1.4.0"
[[example]]
name = "example_simple"
path = "examples/simple.rs"
[[example]]
name = "example_fully"
path = "examples/fully.rs"
[[test]]
name = "tests"
path = "tests/unit/mod.rs"
[lib]
name = "strategy_execution_engine"
path = "src/lib.rs"