-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 925 Bytes
/
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
36
[package]
name = "inertia-loco"
version = "0.1.0"
edition = "2021"
authors = ["Mason Stallmo <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "An implementation of the Inertia.js protocol for Loco"
repository = "https://github.com/mstallmo/inertia-loco"
keywords = ["loco", "inertia"]
[dependencies]
anyhow = "1.0.89"
async-trait = "0.1.74"
axum = "0.7.5"
hex = "0.4.3"
http = "1.0.0"
hyper = "1.0.1"
# in-vite = "0.1.3"
in-vite = { git = "https://github.com/mstallmo/in-vite", branch = "fix-react-prod" }
loco-rs = "0.9"
maud = "0.25.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.107"
sha1 = "0.10.6"
tera = "1.20.0"
tower-http = { version = "0.5.0", features = ["set-header", "trace"] }
tracing = "0.1.40"
[features]
default = ["tera"]
tera = ["in-vite/tera"]
[dev-dependencies]
http-body-util = "0.1.0"
reqwest = "0.11.22"
tokio = { version = "1.34.0", features = ["full"] }