2024-03-29 09:46:31 +03:00
|
|
|
[package]
|
|
|
|
|
name = "sdkserver"
|
|
|
|
|
version = "0.1.0"
|
2025-02-26 21:37:34 +07:00
|
|
|
edition = "2024"
|
2024-03-29 09:46:31 +03:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
env_logger.workspace = true
|
|
|
|
|
|
2025-03-03 08:02:51 +07:00
|
|
|
tower-http = { workspace = true, features = ["cors"]}
|
2024-03-29 09:46:31 +03:00
|
|
|
axum.workspace = true
|
|
|
|
|
axum-server.workspace = true
|
|
|
|
|
|
2024-04-10 06:06:52 +07:00
|
|
|
lazy_static.workspace = true
|
|
|
|
|
|
2024-03-29 09:46:31 +03:00
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
|
|
|
|
|
tokio.workspace = true
|
|
|
|
|
tokio-util.workspace = true
|
|
|
|
|
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
tracing-futures.workspace = true
|
|
|
|
|
tracing-log.workspace = true
|
|
|
|
|
tracing-subscriber.workspace = true
|
|
|
|
|
tracing-bunyan-formatter.workspace = true
|
|
|
|
|
ansi_term.workspace = true
|
|
|
|
|
|
|
|
|
|
prost.workspace = true
|
|
|
|
|
rbase64.workspace = true
|
|
|
|
|
proto.workspace = true
|
2025-03-03 08:02:51 +07:00
|
|
|
common.workspace = true
|