Cargo.toml 986 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "btconsole"
  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. [[bin]]
  7. name = "btconsole-bin"
  8. required-features = ["tokio/rt-multi-thread", "env_logger", "ctrlc"]
  9. [dependencies]
  10. btlib = { path = "../btlib" }
  11. btconsole-client = { path = "../btconsole-client", default-features=false }
  12. yew = { version="0.20", default-features=false, features=["ssr"] }
  13. hyper = { version = "0.14.26", features = ["server", "tcp", "http1", "http2", "runtime"] }
  14. tokio = { version = "1.23.0", features = ["macros", "rt"] }
  15. tower-http = { version = "0.4.0", features = ["fs"] }
  16. bytes = { version = "1.4.0", features = ["std"] }
  17. anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
  18. tower = { version = "0.4", features = ["util"] }
  19. axum = "0.6.18"
  20. futures = "0.3.25"
  21. log = "0.4.17"
  22. regex = "1.8.1"
  23. env_logger = { version = "0.9.0", optional = true }
  24. ctrlc = { version = "3.3.0", optional = true }