-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (36 loc) · 1.03 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
46
[workspace]
members = [
".",
"rustymon-world",
]
[package]
name = "rustymon-server"
version = "0.1.0"
edition = "2021"
[dependencies]
# Webframework
actix-web = { version = "~4.2" }
actix-toolbox = { version = "~0.8", features = ["ws", "session", "logging"] }
# Hashing algorithm
argon2 = { version = "~0.4" }
# Logging facade
log = { version = "~0.4" }
# Async runtime
tokio = { version = "~1.24", features = ["rt-multi-thread", "macros", "sync"] }
futures = { version = "~0.3" }
# ORM
rorm = { version = "~0.4", features = ["tokio-rustls"] }
# Serialization frameworks
serde = { version = "~1.0", features = ["derive"] }
serde_repr = { version = "~0.1" }
serde_json = { version = "~1.0" }
toml = { version = "~0.5" }
chrono = { version = ">=0.4.20", features = ["serde"] }
base64 = { version = "~0.21" }
# CLI parser
clap = { version = "~4.0", features = ["derive"] }
# OSM parsing
rustymon_world = { version = "~0.1", path = "./rustymon-world" }
linear-map = { version = "1.2", features= ["serde_impl"] }
[features]
rorm-main = []