[package] name = "tiny-integration-tester" version = "0.4.6" edition = "2021" license = "MIT/Apache-2.0" repository = "https://gitlab.com/mordaklavache/tiny-integration-tester/" description = "This Rust program is used to perform simple integration tests on programs through a RUST dyn lib or a JSON configuration file." keywords = ["integration", "test", "tester"] categories = ["development-tools", "command-line-utilities"] documentation = "https://gitlab.com/mordaklavache/tiny-integration-tester/" [dependencies] colored = "2.0.0" serde = { version = "1.0.163", features = ["derive"] } serde_json = "1.0.96" getopts = "0.2" libloading = "0.8" toml = { version = "0.7.4", features = ["preserve_order"] } log = "0.4.18" regex = "1.8.4" [dependencies.simple_logger] version = "4.1.0" default-features = false features = ["colors"] [target.'cfg(unix)'.dependencies] nix = "0.26.2" libc = "0.2.144" [build-dependencies] built = "0.6" [profile.release] strip = true lto = true [[bin]] bench = false name = "tiny-integration-tester" path = "src/main.rs"