[package] name = "substance-framework" version = "0.3.0-alpha" edition = "2021" authors = ["Raphaƫl Slagmolen"] license = "MIT" description = "A testing framework designed to work without std, using only core features" homepage = "https://gitlab.com/Tutul/substance-framework" repository = "https://gitlab.com/Tutul/substance-framework" readme = "../README.md" keywords = ["test", "testing", "framework", "substance"] categories = ["development-tools", "development-tools::testing", "no-std"] [lib] name = "substance_framework" path = "src/lib.rs" test = true doctest = false bench = false doc = true proc-macro = false [features] default = ["combined"] combined = [] pretty = [] xml = [] [dependencies] substance-macro = { path = "../substance-macro", version = "0.2.0-alpha" } lazy_static = { version = "1.4.x", features = ["spin_no_std"] } libc-print = "0.1.x" cfg-if = "1.0.0" spin = "0.9.x"