-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (29 loc) · 946 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
[package]
name = "inertia_rust"
description = "A Rust server-adapter for building modern MVC web apps with Inertia."
repository = "https://github.com/KaioFelps/inertia-rust"
keywords = ["inertia", "mvc", "react"]
version = "0.1.0"
edition = "2021"
readme = "README.md"
authors = [ "Kaio Felps" ]
license-file = "LICENSE"
exclude = [
"examples/*",
".idea/*",
".vscode/*"
]
[features]
default = ["actix"]
actix = ["dep:actix-web"]
basic-vite-resolver = ["dep:vite-rust"]
[dependencies]
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0"
async-trait = "0.1.83"
reqwest = { version = "0.12", features = ["json"] }
log = "0.4.22"
tokio = { version = "1.40.0", features = ["fs", "io-std", "test-util", "rt", "rt-multi-thread", "macros"] }
futures = "0.3.30"
actix-web = { version = "4.9.0", features = ["default"], optional = true }
vite-rust = { version = "0.1", optional = true, features = ["basic_directives"] }