-
Notifications
You must be signed in to change notification settings - Fork 451
/
Copy pathCargo.toml
43 lines (38 loc) · 1.24 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
[package]
name = "ink_codegen"
version.workspace = true
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"]
edition.workspace = true
license.workspace = true
readme = "README.md"
repository.workspace = true
documentation = "https://docs.rs/ink_codegen/"
homepage.workspace = true
description = "data structures and algorithms for generating ink! IR code"
keywords.workspace = true
categories.workspace = true
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[lib]
name = "ink_codegen"
[dependencies]
ink_primitives = { workspace = true }
ir = { version = "=5.0.0", package = "ink_ir", path = "../ir", default-features = false }
quote = { workspace = true }
syn = { workspace = true, features = ["parsing", "full", "extra-traits"] }
proc-macro2 = { workspace = true }
derive_more = { workspace = true, features = ["from"] }
itertools = { workspace = true }
either = { workspace = true }
blake2 = { workspace = true }
heck = { workspace = true }
scale = { workspace = true }
impl-serde = { workspace = true, default-features = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
[features]
default = ["std"]
std = [
"itertools/use_std",
"either/use_std",
"ir/std"
]