Path: blob/main/crates/c-api/artifact/Cargo.toml
1692 views
[package]1name = "wasmtime-c-api"2version.workspace = true3authors.workspace = true4description = "C API to expose the Wasmtime runtime"5license = "Apache-2.0 WITH LLVM-exception"6repository = "https://github.com/bytecodealliance/wasmtime"7readme = "README.md"8edition.workspace = true9rust-version.workspace = true10publish = false1112[lib]13name = "wasmtime"14crate-type = ["staticlib", "cdylib"]15doc = false16test = false17doctest = false1819[dependencies]20wasmtime-c-api = { path = '..', package = 'wasmtime-c-api-impl' }2122[features]23# WASMTIME_FEATURE_LIST24default = [25'profiling',26'wat',27'wasi',28'cache',29'parallel-compilation',30'async',31'coredump',32'addr2line',33'demangle',34'threads',35'gc',36'gc-drc',37'gc-null',38'cranelift',39'winch',40'debug-builtins',41'pooling-allocator',42'component-model',43'pulley',44# 'all-arch', # intentionally off-by-default45# ... if you add a line above this be sure to change the other locations46# marked WASMTIME_FEATURE_LIST47]48async = ['wasmtime-c-api/async']49profiling = ["wasmtime-c-api/profiling"]50cache = ["wasmtime-c-api/cache"]51parallel-compilation = ['wasmtime-c-api/parallel-compilation']52wasi = ['wasmtime-c-api/wasi']53logging = ['wasmtime-c-api/logging']54disable-logging = ["wasmtime-c-api/disable-logging"]55coredump = ["wasmtime-c-api/coredump"]56addr2line = ["wasmtime-c-api/addr2line"]57demangle = ["wasmtime-c-api/demangle"]58wat = ["wasmtime-c-api/wat"]59threads = ["wasmtime-c-api/threads"]60gc = ["wasmtime-c-api/gc"]61gc-drc = ["wasmtime-c-api/gc-drc"]62gc-null = ["wasmtime-c-api/gc-null"]63cranelift = ["wasmtime-c-api/cranelift"]64winch = ["wasmtime-c-api/winch"]65debug-builtins = ["wasmtime-c-api/debug-builtins"]66pooling-allocator = ["wasmtime-c-api/pooling-allocator"]67component-model = ["wasmtime-c-api/component-model"]68pulley = ["wasmtime-c-api/pulley"]69all-arch = ["wasmtime-c-api/all-arch"]70# ... if you add a line above this be sure to read the comment at the end of71# `default`727374