Cargo.toml 455 B

12345678910111213141516
  1. [package]
  2. name = "net_monitor"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. regex = "1.10.3"
  8. redis = "0.24.0"
  9. sea-orm = { version = "^0.12.0", features = [ "sqlx-postgres", "runtime-tokio-native-tls", "macros" ] }
  10. tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
  11. telegram-bot = {path= "../telegram_bot"}
  12. orm = {path="../orm"}