[package] name = "tabby-webserver" version.workspace = true edition.workspace = true authors.workspace = true homepage.workspace = true [dependencies] anyhow.workspace = true async-trait.workspace = true axum = { workspace = true, features = ["ws"] } bincode = "1.3.3" chrono = "0.4" futures.workspace = true hyper = { workspace = true, features=["client"]} juniper.workspace = true juniper-axum = { path = "../../crates/juniper-axum" } lazy_static = "1.4.0" mime_guess = "2.0.4" pin-project = "1.1.3" rusqlite = { version = "0.29.0", features = ["bundled"] } # `async-tokio-rusqlite` is only available from 1.1.0-alpha.2, will bump up version when it's stable rusqlite_migration = { version = "1.1.0-alpha.2", features = ["async-tokio-rusqlite"] } rust-embed = "8.0.0" serde.workspace = true tabby-common = { path = "../../crates/tabby-common" } tarpc = { version = "0.33.0", features = ["serde-transport"] } thiserror.workspace = true tokio = { workspace = true, features = ["fs"] } tokio-rusqlite = "0.4.0" tokio-tungstenite = "0.20.1" tracing.workspace = true unicase = "2.7.0" [dependencies.uuid] version = "1.3.3" features = [ "v4", # Lets you generate random UUIDs "fast-rng", # Use a faster (but still sufficiently random) RNG "macro-diagnostics", # Enable better diagnostics for compile-time UUIDs ] [dev-dependencies] tokio = { workspace = true, features = ["macros"] }