[package] name = "rcs_backend" version = "0.2.1" description = "otafablab rust code server backend" edition = "2021" license = "MIT" repository = "https://gitlab.com/otafablab/rcs-backend" exclude = [ "*.xcf", "cache/", # gitlab ci ] [lib] name = "rcs_backend" path = "src/lib/lib.rs" [[bin]] name = "rcs-backend" path = "src/main.rs" doc = false [dependencies] async-tungstenite = { version = "0.16.1", features = ["tokio-runtime"] } backoff = { version = "0.4.0", features = ["tokio"] } cookie = "0.16.0" docker-api = "0.8.0" futures = "0.3.21" http = "0.2.6" hyper = { version = "0.14.17", features = ["full"] } hyper-tungstenite = "0.5.0" jsonwebtoken = "8.0.1" serde = { version = "1.0.136", features = ["derive"] } structopt = "0.3.26" tokio = { version = "1.16.1", features = ["full"] } toml = "0.5.8" tungstenite = "0.16.0" unidecode = "0.3.0" [features]