Cargo.toml 626 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "rumble"
  3. version = "0.1.0"
  4. authors = ["Sergey Chushin <chushin.sergey@gmail.com>"]
  5. description = "Mumble server written in Rust"
  6. repository = "https://github.com/qarux/rumble"
  7. license = "Apache-2.0"
  8. edition = "2018"
  9. [dependencies]
  10. clap = "2.33.3"
  11. tokio = { version = "1.6.1", features = ["rt-multi-thread", "net", "io-util", "sync"] }
  12. tokio-rustls = "0.22.0"
  13. protobuf = "2.23.0"
  14. sled = "0.34.6"
  15. serde = { version = "1.0.126", features = ["derive"] }
  16. bincode = "1.3.3"
  17. aes = "0.7.3"
  18. rand = "0.8.3"
  19. log = "0.4.14"
  20. env_logger = "0.8.4"
  21. [build-dependencies]
  22. protoc-rust = "2.23.0"
  23. [profile.release]
  24. lto = true