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.

31 lines
1014 B

  1. # For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
  2. [package]
  3. name = "rs_machine_input_chirho"
  4. version = "0.1.0"
  5. edition = "2021"
  6. [dependencies]
  7. chrono = { version="0.4.38", features=["serde"] }
  8. rocket = { version="0.5.1" , features = ["json", ] }
  9. sqlx = { version="~0.7" , features = ["chrono", "runtime-tokio", "sqlite"] }
  10. serde = { version="~1.0", features = ["derive"] }
  11. serde_json = "~1.0"
  12. dotenvy = "0.15.7"
  13. clap = { version="4.5.13" , features=["derive"]}
  14. reqwest = { version="0.12.5", features = ["json", "blocking"] }
  15. hostname = "0.4.0"
  16. users = "0.11.0"
  17. tokio = { version = "*", features = ["full"] }
  18. [dependencies.rocket_db_pools]
  19. version = "0.1.0"
  20. features = ["sqlx_sqlite"]
  21. [default.databases.sqlite_database_chirho]
  22. url = "sqlite:db_chirho.sqlite"
  23. [target.'cfg(target_os = "linux")'.dependencies]
  24. sys-info = "0.9"
  25. [target.'cfg(any(target_os = "windows", target_os = "macos"))'.dependencies]
  26. sysinfo = "0.23"