-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (40 loc) · 1.03 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
[package]
name = "koba"
version = "0.2.0"
authors = ["OpenZeppelin Community <[email protected]>"]
license = "MIT"
edition = "2021"
readme = "README.md"
repository = "https://github.com/OpenZeppelin/koba"
homepage = "https://github.com/OpenZeppelin/koba"
documentation = "https://github.com/OpenZeppelin/koba"
description = """
Deploy Stylus contracts with Solidity constructors
"""
keywords = ["rust", "ethereum", "arbitrum", "stylus", "deployment"]
[dependencies]
brotli2 = "0.3.2"
bytesize = "1.3.0"
clap = { version = "4.5.4", features = ["derive"] }
eyre = { version = "0.6", default-features = false, features = [
"auto-install",
"track-caller",
] }
hex = "0.4.3"
once_cell = "1.19.0"
regex = "1.10.4"
tempfile = "3.10.1"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
wasmer = "3.1.0"
alloy = { version = "0.1.1", features = [
"contract",
"network",
"providers",
"provider-http",
"rpc-client",
"rpc-types-eth",
"signer-keystore",
"signer-local",
"getrandom",
] }
owo-colors = "4.0.0"