Cargo.toml 708 B

123456789101112131415161718192021222324252627282930313233
  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.10.1", features = ["rt-multi-thread", "net", "io-util", "sync", "macros"] }
  12. tokio-rustls = "0.22.0"
  13. protobuf = "2.25.1"
  14. dashmap = "4.0.2"
  15. async-trait = "0.1.51"
  16. sled = "0.34.6"
  17. serde = { version = "1.0.130", features = ["derive"] }
  18. bincode = "1.3.3"
  19. ring = "0.16.20"
  20. aes = "0.7.5"
  21. rand = "0.8.4"
  22. log = "0.4.14"
  23. env_logger = "0.9.0"
  24. [build-dependencies]
  25. protobuf-codegen-pure = "2.25.1"
  26. [profile.release]
  27. lto = true