| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [package]
- name = "as-rust"
- version = "3.5.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- tokio = { version = "=1.31.0", features = ["full"] }
- chrono = "=0.4.26"
- tracing = "=0.1"
- tracing-appender-timezone = { git = "https://github.com/skyfffire/tracing-appender-timezone.git" }
- serde = { version = "=1.0.190", features = ["derive"] }
- actix-web = "=4.9.0"
- ctrlc = "=3.2.5"
- serde_json = "=1.0.105"
- rust_decimal = { version = "=1.32.0", features = ["maths"] }
- rand = "=0.8.5"
- futures-channel = "=0.3.29"
- serde_derive = "=1.0.190"
- futures = "=0.3"
- reqwest = { version = "=0.11.14", features = ["json"] }
- hex = "=0.4"
- hmac = "=0.8.1"
- sha2 = "=0.9.9"
- base64 = "=0.13"
- tokio-tungstenite= { git = "https://github.com/HonestHouLiang/tokio-tungstenite.git",rev = "208fc9b09bcc2e2c8cb52e1cde5087446464fc91" }
- ring = "=0.16.20"
- futures-util = { version = "=0.3.29", default-features = false, features = ["sink", "std"] }
- toml = "=0.5.11"
- time = { version = "=0.3.35", features = ["macros"] }
- tracing-subscriber = { version = "=0.3.17", features = [
- "env-filter",
- "time",
- "local-time"
- ] }
- [target.'cfg(any(target_os = "linux"))'.dependencies.openssl]
- version = "*"
- features = ["vendored"]
- # 在确认程序运行无误后 可开启以下配置,可减少打包后的程序大小
- [profile.release]
- lto = true # 启用链接时优化
- strip = "debuginfo" # 剥离调试信息
- #[workspace]
- #members=[
- #]
|