std/integration/Cargo.toml

21 lines
377 B
TOML
Raw Normal View History

2024-05-24 11:18:31 +00:00
[package]
name = "integration"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
okstd = { version = "*", path = "..", features = ["unstable"]}
[[bin]]
name = "log"
path = "src/main.rs"
[[bin]]
name = "panics"
path = "src/panics.rs"
2024-05-28 15:03:48 +00:00
[lib]
name = "tests"
path = "src/tests.rs"