An unofficial collection of APIs used in FreeJam games and mods
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.

35 lines
1.1KB

  1. [package]
  2. name = "libfj"
  3. version = "0.5.1"
  4. authors = ["NGnius (Graham) <ngniusness@gmail.com>"]
  5. edition = "2018"
  6. description = "An unofficial collection of APIs used in FreeJam games and mods"
  7. license = "MIT"
  8. homepage = "https://github.com/NGnius/libfj"
  9. repository = "https://github.com/NGnius/libfj"
  10. readme = "README.md"
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. serde = { version = "^1", features = ["derive"]}
  14. serde_json = "^1"
  15. reqwest = { version = "^0.11", features = ["json"], optional = true}
  16. url = "^2.2"
  17. ureq = { version = "^2", features = ["json"], optional = true}
  18. base64 = "^0.13"
  19. num_enum = "^0.5"
  20. chrono = {version = "^0.4", optional = true}
  21. fasthash = {version = "^0.4", optional = true}
  22. libfj_parsable_macro_derive = {version = "0.5.3", optional = true}
  23. #libfj_parsable_macro_derive = {path = "./parsable_macro_derive", optional = true}
  24. [dev-dependencies]
  25. tokio = { version = "1.4.0", features = ["macros"]}
  26. [features]
  27. simple = ["ureq"]
  28. robocraft = ["reqwest"]
  29. cardlife = ["reqwest"]
  30. techblox = ["chrono", "fasthash", "libfj_parsable_macro_derive"]