-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (31 loc) · 968 Bytes
/
Cargo.toml
File metadata and controls
32 lines (31 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "riverql"
version = "0.2.4"
edition = "2024"
rust-version = "1.85"
description = "GraphQL bridge and CLI client for the River Wayland compositor"
license = "MIT"
readme = "README.md"
repository = "https://github.com/typester/riverql"
keywords = ["river", "wayland", "graphql", "cli"]
categories = ["command-line-utilities", "web-programming::http-server"]
[dependencies]
wayland-client = "0.31"
wayland-scanner = "0.31"
wayland-backend = "0.3"
tokio = { version = "1", features = ["full"] }
async-graphql = "7"
async-graphql-axum = "7"
axum = { version = "0.8", features = ["ws"] }
tokio-stream = { version = "0.1", features = ["sync"] }
once_cell = "1"
tokio-tungstenite = { version = "0.21", default-features = true }
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
argh = "0.1.13"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
libc = "0.2"
url = "2"