summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: afb3d62e1d53d4e16c01f2b6a244e5ec68d77cc0 (plain) (blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "homeworld"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }

tower = { version = "0.4", features = [ "util", "timeout" ] }
tower-http = { version = "0.3", features = [ "add-extension", "trace" ] }

color-eyre = "0.6"
eyre = "0.6"

thiserror = "1"

kankyo = "0.3"

# Middleware
axum-auth = "0.2"

[dependencies.solarlib]
git = "https://git.carathe.dev/solard/solarlib"
branch = "master"

[dependencies.serde]
version = "1"
features = [
    "derive"
]

[dependencies.axum]
version = "0.5"
features = [
    "json",
    "tower-log"
]

[dependencies.hyper]
version = "0.14"
features = [ "full" ]

[dependencies.tokio]
version = "1"
features = [ "full" ]

[dependencies.sqlx]
version = "0.5"
features = [
	"runtime-tokio-rustls",
	"postgres",	
	"macros",
	"migrate"
]