Conor McCullough | 1b651f3 | 2024-01-25 02:50:55 -0800 | [diff] [blame^] | 1 | [package] |
| 2 | name = "avm-analyzer-server" |
| 3 | version = "0.1.0" |
| 4 | edition = "2021" |
| 5 | |
| 6 | [dependencies] |
| 7 | anyhow = "1.0.79" |
| 8 | async-fs = "2.1.0" |
| 9 | async-process = "2.0.1" |
| 10 | avm-analyzer-common = { path = "../avm_analyzer_common" } |
| 11 | avm-stats = { path = "../avm_stats" } |
| 12 | axum = { version = "0.7", features = ["multipart"] } |
| 13 | clap = { version = "4.4.18", features = ["derive"] } |
| 14 | futures-lite = "2.2.0" |
| 15 | image = "0.24.8" |
| 16 | prost = { version = "0.11", features = ["prost-derive"]} |
| 17 | prost-types = "0.11" |
| 18 | serde = { version = "1.0", features = ["derive"] } |
| 19 | serde_json = "1.0" |
| 20 | tokio = { version = "1.0", features = ["full"] } |
| 21 | tower = "0.4.13" |
| 22 | tower-http = { version = "0.5.0", features = ["cors", "fs", "limit", "trace", "timeout"] } |
| 23 | tracing = "0.1" |
| 24 | tracing-subscriber = { version = "0.3", features = ["env-filter"] } |