-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
45 lines (37 loc) · 1.1 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
36
37
38
39
40
41
42
43
44
45
[package]
name = "ryde"
version = "0.4.0"
edition = "2021"
license = "MIT"
homepage = "https://github.com/swlkr/ryde"
repository = "https://github.com/swlkr/ryde"
keywords = ["ryde", "web", "ssr", "framework", "hypermedia"]
description = "a single person, single file web framework"
[dependencies]
axum = { version = "0.7", features = ["macros"] }
axum-extra = { version = "0.9", features = ["cookie", "typed-header", "multipart"] }
itoa = "1.0"
http-body-util = "0.1"
rusqlite = { version = "0.32", features = ["bundled"] }
ryde_macros = { path = "ryde_macros", version = "0.2.0" }
ryu = "1.0"
seq-macro = "0.3"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "io-util"] }
tokio-rusqlite = { git = "https://github.com/programatik29/tokio-rusqlite.git", rev = "d101d1cb32f462f76b7c639d351e6fcf56528004" }
tower = "0.4"
time = "0.3.36"
[[example]]
name = "simple"
[[example]]
name = "html"
[[example]]
name = "router"
[[example]]
name = "static_files"
[[example]]
name = "db"
[[example]]
name = "protected"
[[example]]
name = "router_with_state"