forked from OffchainLabs/stylus-sdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 1 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
[workspace]
members = ["stylus-sdk", "stylus-proc", "mini-alloc"]
resolver = "2"
[workspace.package]
version = "0.5.0"
edition = "2021"
authors = ["Offchain Labs"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/OffchainLabs/stylus-sdk-rs"
repository = "https://github.com/OffchainLabs/stylus-sdk-rs"
rust-version = "1.71.0"
[workspace.dependencies]
alloy-primitives = { version = "0.3.1", default-features = false , features = ["native-keccak"] }
alloy-sol-types = { version = "0.3.1", default-features = false }
cfg-if = "1.0.0"
derivative = { version = "2.2.0", features = ["use_core"] }
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
keccak-const = "0.2.0"
lazy_static = "1.4.0"
sha3 = "0.10.8"
# proc macros
syn = { version = "1.0", features = ["full"] }
paste = "1.0.14"
quote = "1.0"
regex = "1.9.1"
proc-macro2 = "=1.0.79"
syn-solidity = "=0.3.1"
convert_case = "0.6.0"
# members
stylus-sdk = { path = "stylus-sdk" }
stylus-proc = { path = "stylus-proc", version = "0.5.0" }