-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 902 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
[package]
authors = ["Nicolas Grislain <[email protected]>"]
name = "qrlew-server"
version = "0.9.4"
edition = "2021"
description = "Qrlew - Server"
documentation = "https://docs.rs/qrlew-server"
readme = "README.md"
homepage = "https://sarus.tech/"
repository = "https://github.com/Qrlew/server"
license = "Apache-2.0"
keywords = ["sql", "data", "web", "http"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
qrlew = "0.9.20"
axum = "0.7.3"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.5.0", features = ["cors", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
chrono = "0.4"
rsa = { version = "0.9.2", features = ["sha2", "pem"] }
rand = "0.8"
base64 = "0.22"