# SPDX-FileCopyrightText: 2023 TriliTech # # SPDX-License-Identifier: MIT [package] name = "tezos-smart-rollup-installer" version = "0.2.2" edition = "2021" authors = ["TriliTech "] include = ["src/", "installer.wasm", "README.md"] license = "MIT" repository = "https://gitlab.com/tezos/tezos.git" description = "Installer client for Tezos Smart Rollups." keywords = ["tezos", "smart", "rollup", "installer"] categories = ["development-tools", "command-line-utilities"] [[bin]] name = "smart-rollup-installer" path = "src/main.rs" [dependencies.tezos-smart-rollup-encoding] path = "../encoding" version = "0.2.2" default-features = false [dependencies.clap] version = "4.1" features = ["derive"] [dependencies.hex] version = "0.4" [dependencies.thiserror] version = "1.0" [dependencies.wasm-gen] version = "0.1.4" [dependencies.tezos-smart-rollup-installer-config] path = "../installer-config" version = "0.2.2" [dependencies.tezos_data_encoding] version = "=0.5.2" [dependencies.tezos-smart-rollup-host] path = "../host" version = "0.2.2" [dependencies.serde_yaml] version = "0.9" # For tests [dev-dependencies] installer-kernel = { path = "../installer-kernel", default-features = false } tezos-smart-rollup = { path = "../sdk", features = ["proto-nairobi"], default-features = false } tezos-smart-rollup-mock = { path = "../mock", features = ["proto-nairobi"] }