x86 operating system
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 rivejä
542 B

  1. [package]
  2. name = "glade"
  3. version = "0.1.0"
  4. authors = ["Isabelle Lesko <me@izzabelle.dev>"]
  5. edition = "2018"
  6. #[profile.dev]
  7. #panic = "abort"
  8. [profile.release]
  9. panic = "abort"
  10. [dependencies]
  11. rlibc = "1.0.0"
  12. bootloader = "0.9.8"
  13. volatile = "0.2.6"
  14. spin = "0.5.2"
  15. x86_64 = "0.11.7"
  16. uart_16550 = "0.2.7"
  17. [dependencies.lazy_static]
  18. version = "1.0"
  19. features = ["spin_no_std"]
  20. [package.metadata.bootimage]
  21. test-args = [
  22. "-device", "isa-debug-exit,iobase=0xf4,iosize=0x04",
  23. "-serial", "stdio",
  24. "-display", "none"
  25. ]
  26. test-success-exit-code = 33