Cargo.toml 573 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "api"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. tokio = { version = "1.44.2", features = ["rt-multi-thread", "macros"] }
  7. poem = "3.1.10"
  8. sea-orm = { version = "^1.1.10", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] }
  9. tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
  10. tera = "1.20.0"
  11. serde = "1.0.219"
  12. serde_json = "1.0.40"
  13. redis = "0.30.0"
  14. google-sheets4 = "6.0.0"
  15. #workspaces
  16. # local libs
  17. telegram-bot = { path = "../telegram_bot" }
  18. msg_handler = { path = "../msg_handler" }
  19. orm = { path = "../orm" }