Cargo.toml 486 B

123456789101112131415161718192021
  1. [package]
  2. name = "shit-post-web-api"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. tokio = { features = ["rt-multi-thread", "macros"] }
  7. poem = {}
  8. sea-orm = { version = "^0.12.0", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] }
  9. tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
  10. tera = {}
  11. serde = {}
  12. serde_json = {}
  13. redis = "0.24.0"
  14. #workspaces
  15. # local libs
  16. shit-post-db = { path = "../db_shit"}
  17. telegram-bot = { path = "../telegram_bot" }