-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
109 lines (96 loc) · 3.46 KB
/
Cargo.toml
File metadata and controls
109 lines (96 loc) · 3.46 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[workspace]
members = ["crates/*"]
exclude = [
"lib/rain.interpreter",
"lib/rain.raindex.interface",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "LicenseRef-DCL-1.0"
version = "0.0.0-alpha.0"
homepage = "https://github.com/rainlanguage/raindex"
[workspace.dependencies]
foundry-block-explorers = "0.2.6"
alloy = { version = "1.0.9", features = ["sol-types", "json", "json-abi"] }
alloy-ethers-typecast = { git = "https://github.com/rainlanguage/alloy-ethers-typecast", rev = "bcc3a04394aefe191fef4ae8e6e94381a419c99a" }
anyhow = "1.0.70"
async-trait = "0.1.77"
clap = { version = "4.2.5", features = ["cargo", "derive"] }
once_cell = "1.17.1"
reqwest = { version = "0.12.5", features = ["json"] }
rust-bigint = "1.2.0"
serde = "1.0.200"
futures = "0.3.17"
serde_bytes = "0.11.9"
serde_json = "1.0.112"
serde_yaml = "0.9.32"
tokio = { version = "1.28.0" }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
url = "2.5.7"
comfy-table = "7.1.0"
cynic-codegen = { version = "3.4.0", features = ["rkyv"] }
cynic = "3.7.3"
chrono = "0.4.31"
thiserror = "1.0.56"
strict-yaml-rust = "0.1.2"
dotrain = "6.0.1-alpha.24"
dotrain-lsp = "6.0.1-alpha.24"
rain-metadata = { path = "lib/rain.interpreter/lib/rain.metadata/crates/cli" }
rain-metadata-bindings = { path = "lib/rain.interpreter/lib/rain.metadata/crates/bindings" }
rain-metaboard-subgraph = { path = "lib/rain.interpreter/lib/rain.metadata/crates/metaboard" }
rain_interpreter_bindings = { path = "lib/rain.interpreter/crates/bindings" }
rain_interpreter_dispair = { path = "lib/rain.interpreter/crates/dispair" }
rain_interpreter_parser = { path = "lib/rain.interpreter/crates/parser" }
rain-interpreter-eval = { path = "lib/rain.interpreter/crates/eval" }
csv = "1.3.0"
insta = { version = "1.34.0" }
proptest = "1.4.0"
derive_builder = "0.20.0"
thirtyfour = "0.31.0"
test-context = "0.3.0"
portpicker = "0.1.1"
rain-erc = { git = "https://github.com/rainlanguage/rain.erc", rev = "1014cbd72fab790b4ab1f5aab3e6780f13cd8efb" }
rain-math-float = { path = "lib/rain.interpreter/lib/rain.interpreter.interface/lib/rain.math.float/crates/float" }
rain-error-decoding = { git = "https://github.com/rainlanguage/rain.error", rev = "3d2ed70fb2f7c6156706846e10f163d1e493a8d3" }
wasm-bindgen-utils = { git = "https://github.com/rainlanguage/rain.wasm", rev = "06990d85a0b7c55378a1c8cca4dd9e2bc34a596a" }
tempfile = "3.20.0"
eyre = "0.6.12"
tower = "0.5.2"
getrandom = { version = "0.2", features = ["js"] }
itertools = "0.14.0"
[workspace.dependencies.rain_orderbook_bindings]
path = "crates/bindings"
[workspace.dependencies.rain_orderbook_common]
path = "crates/common"
[workspace.dependencies.rain_orderbook_cli]
path = "crates/cli"
[workspace.dependencies.rain_orderbook_subgraph_client]
path = "crates/subgraph"
[workspace.dependencies.rain_orderbook_app_settings]
path = "crates/settings"
[workspace.dependencies.rain_orderbook_quote]
path = "crates/quote"
[workspace.dependencies.rain_orderbook_test_fixtures]
path = "crates/test_fixtures"
[workspace.dependencies.rain_orderbook_math]
path = "crates/math"
[workspace.dependencies.rain_orderbook_js_api]
path = "crates/js_api"
[workspace.dependencies.rain_orderbook_rest_api]
path = "crates/rest_api"
# release profile for wasm build optimized for size reduction
[profile.release-wasm]
inherits = "release"
opt-level = "z"
lto = true
strip = true
panic = "abort"
codegen-units = 1
rpath = false
debug = false
incremental = false
overflow-checks = false
debug-assertions = false
split-debuginfo = "packed"