-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (74 loc) · 2.26 KB
/
Cargo.toml
File metadata and controls
84 lines (74 loc) · 2.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[workspace]
resolver = "2"
members = [
"crates/types",
"crates/solver",
"crates/matching-engine",
"crates/settlement",
"crates/relayer",
"crates/orchestrator",
"crates/ratelimit",
"crates/metrics",
"crates/config",
"contracts/escrow",
"contracts/settlement",
]
[package]
name = "atom-intents"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/iqlusioninc/atom-intents"
authors = ["Iqlusion Inc."]
[dependencies]
atom-intents-types = { workspace = true }
atom-intents-matching-engine = { workspace = true }
atom-intents-settlement = { workspace = true }
atom-intents-solver = { workspace = true }
async-trait = { workspace = true }
cosmwasm-std = { workspace = true }
tokio = { workspace = true }
rust_decimal = { workspace = true }
futures = { workspace = true }
[dev-dependencies]
tokio = { workspace = true }
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/iqlusioninc/atom-intents"
authors = ["Iqlusion Inc."]
[workspace.dependencies]
# Core
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
anyhow = "1.0"
async-trait = "0.1"
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
tracing = "0.1"
tracing-subscriber = "0.3"
# Cosmos/CosmWasm
cosmwasm-std = { version = "=2.3.0", features = ["stargate"] }
cosmwasm-schema = "=2.3.0"
cw-storage-plus = "=2.0.0"
# Crypto
sha2 = "0.10"
k256 = { version = "0.13", features = ["ecdsa", "sha256"] }
secp256k1 = { version = "0.29", features = ["recovery", "global-context"] }
getrandom = { version = "0.2", features = ["custom"] }
# Numeric
rust_decimal = { version = "1.0", features = ["serde"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Internal crates
atom-intents-types = { path = "crates/types" }
atom-intents-solver = { path = "crates/solver" }
atom-intents-matching-engine = { path = "crates/matching-engine" }
atom-intents-settlement = { path = "crates/settlement" }
atom-intents-relayer = { path = "crates/relayer" }
atom-intents-orchestrator = { path = "crates/orchestrator" }
atom-intents-ratelimit = { path = "crates/ratelimit" }
atom-intents-metrics = { path = "crates/metrics" }
atom-intents-config = { path = "crates/config" }