Cargo.toml 742 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "eelu-login"
  3. version = "0.3.2"
  4. edition = "2021"
  5. authors = ["Eslam Muhammad <0xCrypt00o@protonmail.com>", "Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
  6. description = "EELU Moodle Login University moodle-login through sis system"
  7. repository = "https://github.com/0x61nas/eelu-login"
  8. license = "MIT OR Apache-2.0"
  9. keywords = ["eelu", "EELU", "eelu-moodle", "moodle", "sis"]
  10. homepage = "https://github.com/0x61nas/eelu-login/README.md"
  11. readme = "README.md"
  12. include = [
  13. "src/**/*",
  14. "Cargo.toml",
  15. "README.md",
  16. "LICENSE",
  17. "LICENSE-apache",
  18. ]
  19. exclude = [
  20. "tests/**/*",
  21. "examples/**/*",
  22. "docs/**/*"
  23. ]
  24. [dependencies]
  25. sis-login = "0.2.8"
  26. tokio = "1"
  27. open = "5"
  28. [workspace]
  29. members = [
  30. "sis-login"
  31. ]