-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 841 Bytes
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
[package]
name = "soroban-sdk-macros"
description = "Soroban SDK macros."
homepage = "https://github.com/stellar/rs-soroban-sdk"
repository = "https://github.com/stellar/rs-soroban-sdk"
authors = ["Stellar Development Foundation <info@stellar.org>"]
readme = "../README.md"
license = "Apache-2.0"
version.workspace = true
edition = "2021"
rust-version.workspace = true
[lib]
proc-macro = true
doctest = false
[dependencies]
soroban-spec = { workspace = true }
soroban-spec-rust = { workspace = true }
soroban-env-common = { workspace = true }
stellar-xdr = { workspace = true, features = ["curr", "std"] }
syn = {version="2.0.77",features=["full"]}
quote = "1.0"
proc-macro2 = "1.0"
itertools = "0.13.0"
darling = "0.20.10"
macro-string = "0.1.4"
sha2 = "0.10.7"
heck = "0.5.0"
[features]
testutils = []
experimental_spec_shaking_v2 = []