1234567891011121314151617181920212223242526272829303132 |
- [workspace]
- members = [
- "net_monitor",
- "telegram_bot",
- "migration",
- "orm",
- ]
- resolver = "2"
- [workspace.dependencies]
- regex = "1.10.3"
- reqwest = { version = "0.11", features = ["json"] }
- tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
- futures = "0.3.28"
- serde_json= "1.0.113"
- serde = {version="1.0.195", features=["derive"]}
- redis = "0.24.0"
- sea-orm = { version = "^0.12.0", features = [ "sqlx-postgres", "runtime-tokio-native-tls", "macros" ] }
- sea-orm-cli = "0.12.10"
- telegram_bot = { path="telegram_bot" }
- orm = {path="orm"}
- [profile.release]
- strip = true # Automatically strip symbols from the binary.
- opt-level = "z" # Optimize for size.
- lto = true
- codegen-units = 1
- panic = "abort"
|