matrix-spam-ml

git clone git://archive.git.mtrnord.blog/MTRNord/matrix-spam-ml.git
Log | Files | Refs | Submodules | README | LICENSE

Cargo.toml (951B)


      1 [package]
      2 edition = "2021"
      3 name = "model_server"
      4 publish = false
      5 version = "0.1.0"
      6 
      7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      8 
      9 [dependencies]
     10 axum = "0.6.1"
     11 axum-macros = "0.3.0"
     12 axum-auth = {version = "0.4.0", default-features = false, features = ["auth-bearer"]}
     13 color-eyre = "0.6.2"
     14 linkify = "0.9.0"
     15 once_cell = "1.15.0"
     16 serde = {version = "1.0.149", features = ["derive"]}
     17 serde_json = "1.0.89"
     18 tensorflow = {version = "0.19.1", features = ["tensorflow_gpu"]}
     19 askama = {git = "https://github.com/djc/askama.git", rev = "eeec6f0654f32270aec4e4a0d0f42e4ad39bc28e"}
     20 askama_axum = {git = "https://github.com/djc/askama.git", rev = "eeec6f0654f32270aec4e4a0d0f42e4ad39bc28e"}
     21 #tensorflow = "0.19.1"
     22 tokio = {version = "1.23.0", features = ["full"]}
     23 tracing = "0.1.37"
     24 tracing-subscriber = {version = "0.3.16", features = ["env-filter"]}
     25 voca_rs = "1.14.0"
     26 
     27 [dev-dependencies]
     28 schemars = "0.8.10"