[package] name = "tarantool-test" version = "0.3.2" rust-version = "1.74.0" edition = "2021" description = "CLI test framework for tarantool-based Rust applications" readme = "README.md" homepage = "https://git.picodata.io/picodata/picodata/tarantool-test" repository = "https://git.picodata.io/picodata/picodata/tarantool-test" license = "BSD-2-Clause" keywords = ["tarantool", "utility", "cli"] categories = ["command-line-utilities"] authors = ["Fedor Telnov"] include = ["src/**/*", "README.md"] [features] bin = ["dep:clap", "dep:tempfile", "dep:tarantool-runner"] [dependencies] linkme = "0.3" tarantool = { workspace = true } serde = "1.0" tester = "0.7" anyhow = "1" serde_json = { version = "1" } # Binary deps. clap = { version = "4.5", features = ["derive"], optional = true } tempfile = { version = "3", optional = true } tarantool-runner = { version = "0.1.0", optional = true } [[bin]] name = "tarantool-test" required-features = ["bin"]