Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "sd-proxy"
  3. version = "0.1.0"
  4. edition = "2021"
  5. build = "build.rs"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. anyhow = "1.0.70"
  9. axum = "0.6"
  10. base16ct = { version = "0.2.0", features = ["std"] }
  11. base64ct = { version = "1.6.0", features = ["std"] }
  12. # chrono = { version = "0.4.24", features = ["serde"] }
  13. futures = "0.3"
  14. hex = "0.4"
  15. hyper = { version = "0.14" }
  16. md-5 = { version = "0.10.5", features = ["asm"] }
  17. pin-project-lite = "0.2"
  18. reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "gzip", "brotli", "deflate", "stream", "trust-dns"] }
  19. serde = { version = "1", features = ["derive"] }
  20. serde_json = "1.0"
  21. serde_qs = "0.12.0"
  22. time = { version = "0.3", features = ["serde", "formatting", "macros", "parsing", "local-offset"] }
  23. tokio = { version = "1.26", features = ["full", "tracing"] }
  24. toml = "0.7"
  25. tower = { version = "0.4", features = ["timeout"] }
  26. tracing = { version = "0.1", features = ["async-await"] }
  27. tracing-appender = "0.2"
  28. tracing-subscriber = { version = "0.3", features = ["local-time", "time"] }
  29. url = { version = "2.3.1", features = ["serde"] }
  30. [build-dependencies]
  31. cc = "1"
  32. cmake = "0.1"
  33. [dev-dependencies]
  34. libsm = "*"