1234567891011121314151617181920212223 |
- [package]
- name = "api"
- version = "0.1.0"
- edition = "2021"
- [dependencies]
- tokio = { version = "1.44.2", features = ["rt-multi-thread", "macros"] }
- poem = "3.1.10"
- sea-orm = { version = "^1.1.10", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" ] }
- tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
- tera = "1.20.0"
- serde = "1.0.219"
- serde_json = "1.0.40"
- redis = "0.30.0"
- google-sheets4 = "6.0.0"
- #workspaces
- # local libs
- telegram-bot = { path = "../telegram_bot" }
- msg_handler = { path = "../msg_handler" }
- orm = { path = "../orm" }
|