Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/versioned-export-macros/Cargo.toml
1690 views
1
[package]
2
authors = ["The Wasmtime Project Developers"]
3
description = "INTERNAL: Macros for defining versioned exports in Wasmtime"
4
edition.workspace = true
5
rust-version.workspace = true
6
license = "Apache-2.0 WITH LLVM-exception"
7
name = "wasmtime-internal-versioned-export-macros"
8
repository = "https://github.com/bytecodealliance/wasmtime"
9
version.workspace = true
10
11
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12
13
[dependencies]
14
syn = { workspace = true, features = ["full"] }
15
quote = { workspace = true }
16
proc-macro2 = { workspace = true }
17
18
[lib]
19
proc-macro = true
20
21