An unofficial collection of APIs used in FreeJam games and mods
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

3 роки тому
12345678910111213141516171819202122232425262728293031323334
  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"]