Cargo.toml 556 B

123456789101112131415161718
  1. [package]
  2. name = "rustructure-test"
  3. version = "0.2.0"
  4. edition = "2021"
  5. description = "Tests for rustructure crate."
  6. readme = "../README.md"
  7. authors = [
  8. "Kestrel <kestrel@flying-kestrel.ca>"
  9. ]
  10. repository = "https://git.flying-kestrel.ca/kestrel/rustructure"
  11. license = "BSD-4-Clause"
  12. # This crate is for tests that do not need to be published
  13. publish = false
  14. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  15. [dependencies]
  16. rustructure = { path = "../rustructure", version = "0.2.0", features = ["std"] }