-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (33 loc) · 1.2 KB
/
Cargo.toml
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
33
34
35
[package]
name = "reflex-handlers"
version = "0.1.0"
license = "Apache-2.0"
authors = ["Marshall Wace LLP <[email protected]>", "Tim Kendrick <[email protected]>", "Jordan Hall <[email protected]>", "Chris Campbell <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reflex = { path = "../reflex" }
reflex-dispatcher = { path = "../reflex-dispatcher" }
reflex-graphql = { path = "../reflex-graphql" }
reflex-json = { path = "../reflex-json" }
reflex-macros = { path = "../reflex-macros" }
reflex-runtime = { path = "../reflex-runtime" }
reflex-stdlib = { path = "../reflex-stdlib" }
reflex-utils = { path = "../reflex-utils" }
async-recursion = "1.0.0"
bytes = "1.1.0"
crc = "2.0.0"
futures = "*"
http = "0.2.6"
hyper = { version = "0.14", features = ["full"] }
hyper-rustls = "0.24.0"
metrics = "0.18"
pin-project = "1.0.11"
rustls = "0.21.2"
rustls-pemfile = "1.0.2"
serde = { version = "1.0", features = ["derive"] }
strum = "0.22"
strum_macros = "0.22"
tokio = { version = "1", features = ["full", "tracing"] }
tokio-tungstenite = { version = "0.17.1" }
uuid = { version = "1.0.0-alpha.1", features = ["v4", "fast-rng"] }