-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
116 lines (103 loc) · 2.69 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
[profile]
dev = { panic = "abort"}
release = { panic = "unwind" }
[workspace]
members = [
"abi",
"codegen",
"compiler",
"compiler/filetests",
"elko",
"evm/opcodes",
"evm/abi",
"zink/codegen",
"zint",
]
resolver = "2"
[workspace.package]
version = "0.1.11"
authors = ["clearloop"]
edition = "2021"
license = "GPL-3.0-only"
homepage = "https://github.com/clearloop/zink"
repository = "https://github.com/clearloop/zink.git"
[workspace.dependencies]
anyhow = "1.0.79"
cargo_metadata = "0.18.1"
ccli = "0.0.1"
colored = "2.1.0"
etc = "0.1.19"
heck = "0.5.0"
hex = "0.4.3"
indexmap = "2.2.2"
paste = "1.0.14"
postcard = { version = "1.0.8", default-features = false }
proc-macro2 = "1.0.78"
quote = "1.0.35"
revm = { version = "14", default-features = false }
semver = "1.0.21"
serde = { version = "1.0.196", default-features = false }
serde_json = "1.0.113"
smallvec = "1.13.1"
syn = { version = "2.0.77", features = [ "full" ] }
thiserror = "1.0.56"
tiny-keccak = { version = "2.0.2", features = ["keccak"], default-features = false }
toml = "0.8.9"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
wasm-opt = "0.116.0"
wasmparser = "0.121.0"
wat = "1.0.85"
## EVM packages
opcodes = { package = "evm-opcodes", path = "evm/opcodes", version = "=0.0.4", features = [ "data" ] }
sol-abi = { path = "evm/abi", version = "=0.0.1" }
## Zink packages
elko = { path = "elko", version = "0.1.11" }
filetests = { package = "zinkc-filetests", path = "compiler/filetests", version = "0.1.11" }
zabi = { path = "abi", version = "0.1.11" }
zingen = { path = "codegen", version = "0.1.11" }
zink = { path = ".", version = "0.1.11" }
zink-codegen = { path = "zink/codegen", version = "0.1.11" }
zinkc = { path = "compiler", version = "0.1.11" }
zint = { path = "zint", version = "0.1.11" }
[workspace.metadata.conta]
packages = [
"zabi",
"zingen",
"zinkc",
"filetests",
"zint",
"zink-codegen",
"zink",
"elko"
]
# Zink Programming Language
# -------------------------
[package]
name = "zink"
description = "Standard library for zink projects."
documentation = "https://docs.rs/zink"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme = "zink/README.md"
[lib]
path = "zink/src/lib.rs"
[dependencies]
paste.workspace = true
zink-codegen.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tiny-keccak.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
anyhow.workspace = true
filetests.workspace = true
opcodes = { workspace = true, features = ["data"] }
tracing.workspace = true
zint.workspace = true
hex.workspace = true
# [features]
# default = [ "evm" ]
# evm = [ ]