# SPDX-FileCopyrightText: 2022-2023 TriliTech # SPDX-FileCopyrightText: 2023 Nomadic Labs # # SPDX-License-Identifier: MIT [package] name = "tezos-smart-rollup-entrypoint" version = "0.2.2" edition = "2021" license = "MIT" authors = ["TriliTech "] repository = "https://gitlab.com/tezos/tezos.git" description = "Setup kernel_entry entrypoint for Tezos Smart Rollup kernels." keywords = ["tezos", "smart", "rollup"] categories = ["no-std", "no-std::no-alloc", "api-bindings", "wasm"] [lib] crate-type = ["rlib"] [dependencies] dlmalloc = { version = "0.2.3", features = ["global"], optional = true} [dependencies.tezos-smart-rollup-core] path = "../core" version = "0.2.2" default-features = false [dependencies.tezos-smart-rollup-panic-hook] path = "../panic-hook" version = "0.2.2" default-features = false optional = true [dependencies.tezos-smart-rollup-host] path = "../host" version = "0.2.2" default-features = false [dependencies.tezos-smart-rollup-debug] path = "../debug" version = "0.2.2" default-features = false [features] default = ["std", "alloc", "dlmalloc", "panic-hook-debug", "panic-hook-abort", "panic-hook"] std = ["tezos-smart-rollup-panic-hook/std", "tezos-smart-rollup-host/std"] alloc = [] panic-hook = ["tezos-smart-rollup-panic-hook"] panic-hook-debug = ["panic-hook", "tezos-smart-rollup-panic-hook/debug", "tezos-smart-rollup-debug/default"] panic-hook-abort = ["panic-hook", "tezos-smart-rollup-panic-hook/abort"] testing = [] proto-alpha = ["tezos-smart-rollup-core/proto-alpha", "tezos-smart-rollup-host/proto-alpha", "tezos-smart-rollup-debug/proto-alpha"]