-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
174 lines (159 loc) · 5.63 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
[workspace]
resolver = "2"
members = [
"crates/jstz_api",
"crates/jstz_cli",
"crates/jstz_core",
"crates/jstz_crypto",
"crates/jstz_engine",
"crates/jstz_kernel",
"crates/jstz_mock",
"crates/jstz_node",
"crates/jstz_proto",
"crates/jstz_rollup",
"crates/jstz_sdk",
"crates/jstz_wpt",
"crates/jstzd",
"crates/octez"
]
[workspace.package]
edition = "2021"
version = "0.1.0-alpha.0"
authors = ["TriliTech <[email protected]>"]
repository = "https://github.com/jstz-dev/jstz"
homepage = "https://github.com/jstz-dev/jstz"
documentation = "https://jstz-dev.github.io/jstz/"
readme = "README.md"
license-file = "LICENSE"
description = "JavaScript server runtime for Tezos Smart Rollups"
[workspace.dependencies]
ansi_term = "0.12.1"
anyhow = "1.0.82"
assert_cmd = "2.0.14"
async-dropper-simple = { version = "0.2.6", features = ["tokio"] }
async-trait = "0.1.82"
axum = "0.7.7"
base64 = "0.21.7"
bincode = "1.3.3"
boa_engine = { version = "0.19.0", features = ["fuzz"] }
boa_gc = "0.19.0"
bollard = "0.16.1"
bs58 = "0.5"
bytes = "1.4.0"
chrono = { version = "0.4.34", default-features = false, features = ["std"] }
clap = { version = "^4.4", features = ["derive"] }
clap_complete = "4.4.10"
console = "0.15.8"
crossterm = "0.27"
ctrlc = "3.4.2"
daemonize = "0.5.0"
derive_more = "0.99.17"
dialoguer = "0.11.0"
dirs = "3.0"
either = "1.9.0"
encoding_rs = "0.8.33"
env_logger = "0.11.1"
erased-serde = "0.4.2"
expect-test = "1.4.1"
fastrand = "2.0.1"
figment = { version = "0.10.12", features = ["json", "env"] }
form_urlencoded = "1.2.0"
fs_extra = "1.2"
futures = "0.3"
futures-util = "0.3.30"
getrandom = { version = "0.2.12", features = ["custom"] }
hex = "0.4.3"
http = "1.0.0"
http-serde = "2.0.0"
in-container = "^1"
indicatif = "0.17.0"
log = "0.4.20"
mozjs = "0.14.1"
nix = { version = "^0.27.1", features = ["process", "signal"] }
nom = "7.1.3"
num-traits = "0.2.16"
parking_lot = "0.12.1"
predicates = "3.1.0"
prettytable = "0.10.0"
pretty_assertions = "1.4.1"
proptest = "1.1"
rand = "0.8"
regex = "1"
reqwest = { version = "0.11.24", features = ["json", "blocking"] }
reqwest-eventsource = "0.5.0"
rust-embed = { version = "8.5.0", features = ["interpolate-folder-path", "include-exclude"] }
rustyline = "14.0.0"
serde = { version = "1.0.196", features = ["derive", "rc"] }
serde-wasm-bindgen = "0.6.5"
serde_json = "1.0.107"
serde_with = { version = "3.6.1", features = ["macros"] }
serde_yaml = "0.9"
sha2 = "0.10"
signal-hook = "0.3.17"
simplelog = "0.11"
spinners = "4.1.1"
syntect = "5.2.0"
tempfile = "3.10.0"
tezos_data_encoding = "0.6.0"
thiserror = "1.0.56"
tiny-bip39 = "1.0.0"
tl = "0.7.7"
tokio = { version = "1.36.0", features = ["full"] }
tokio-stream = "0.1.14"
tokio-util = "0.7.10"
tower-http = { version = "0.6.1", features = ["cors"] }
url = "2.4.1"
urlpattern = "0.2.0"
utoipa = { version = "5.1.3", features = ["axum_extras", "url"] }
utoipa-axum = "0.1.1"
utoipa-scalar = { version = "0.2.0", features = ["axum"] }
wasm-bindgen = "0.2.92"
[workspace.dependencies.tezos-smart-rollup]
version = "0.2.2"
default-features = false
features = ["std", "crypto", "panic-hook", "data-encoding", "storage", "proto-alpha"]
[workspace.dependencies.tezos-smart-rollup-host]
version = "0.2.2"
features = ["proto-alpha"]
[workspace.dependencies.tezos-smart-rollup-core]
version = "0.2.2"
[workspace.dependencies.tezos-smart-rollup-mock]
version = "0.2.2"
[workspace.dependencies.tezos-smart-rollup-encoding]
version = "0.2.2"
default-features = false
features = ["alloc", "tezos-encoding", "crypto"]
[workspace.dependencies.tezos-smart-rollup-entrypoint]
version = "0.2.2"
[workspace.dependencies.tezos-smart-rollup-debug]
version = "0.2.2"
[workspace.dependencies.tezos-smart-rollup-panic-hook]
version = "0.2.2"
[workspace.dependencies.tezos-smart-rollup-storage]
version = "0.2.2"
[workspace.dependencies.tezos-smart-rollup-installer-config]
version = "0.2.2"
[workspace.dependencies.tezos-smart-rollup-installer]
version = "0.2.2"
[workspace.dependencies.tezos_crypto_rs]
version = "0.6.0"
default-features = false
[patch.crates-io]
# NOTE: When updating `tag`, also update the `tag` in the `mozjs_archive` derivation in `nix/crates.nix`
mozjs = { git = "https://github.com/servo/mozjs.git", tag = "mozjs-sys-v0.128.3-0" }
tezos-smart-rollup = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-host = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-core = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-mock = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-encoding = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-entrypoint = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-debug = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-panic-hook = { git = "https://gitlab.com/tezos/tezos.git" }
tezos-smart-rollup-storage = { git = "https://gitlab.com/tezos/tezos.git" }
boa_ast = { git = "https://github.com/trilitech/boa.git", branch = "ajob410@fix/remove-wasm-bindgen-from-time" }
boa_engine = { git = "https://github.com/trilitech/boa.git", branch = "ajob410@fix/remove-wasm-bindgen-from-time" }
boa_gc = { git = "https://github.com/trilitech/boa.git", branch = "ajob410@fix/remove-wasm-bindgen-from-time" }
boa_interner = { git = "https://github.com/trilitech/boa.git", branch = "ajob410@fix/remove-wasm-bindgen-from-time" }
boa_macros = { git = "https://github.com/trilitech/boa.git", branch = "ajob410@fix/remove-wasm-bindgen-from-time" }
boa_parser = { git = "https://github.com/trilitech/boa.git", branch = "ajob410@fix/remove-wasm-bindgen-from-time" }
boa_profiler = { git = "https://github.com/trilitech/boa.git", branch = "ajob410@fix/remove-wasm-bindgen-from-time" }