-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (48 loc) · 1.51 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
47
48
49
50
51
52
[package]
name = "oism-server"
version = "1.7.18"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "oism-server"
[dependencies]
tokio = { version = "1", features = ["rt","macros","fs"] }
tracing = "0.1"
tracing-subscriber = { version="0.3", features = ["env-filter","registry"] }
tracing-appender = "0.2"
tracing-bunyan-formatter = "0.3"
axum = {version="0.6",features = ["headers","ws","macros"]}
tower-http = { version = "0.4", features = ["trace","compression-gzip","cors"] }
tower = "0.4"
thiserror = "1"
serde_json = "1"
mongodb = { version = "2", features = ["bson-chrono-0_4","bson-uuid-1"] }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
futures = "0.3.21"
dashmap = "5"
async-recursion= "1"
uuid = "1"
pbkdf2 = {version = "0.12" , features = ["simple"]}
jsonwebtoken = "8"
once_cell = "1.12"
base64 = "0.21"
config = {version = "0.13",default-features = false, features = ["yaml"]}
secrecy = { version = "0.8", features = ["serde"] }
chrono-tz = "0.8"
reqwest = { version = "0.11", features = ["json"]}
strum = { version = "0.24", features = ["derive"] }
matchit = "0.7.0"
[dev-dependencies]
fake = "2.4.3"
reqwest = { version = "0.11", default-features = false, features = ["json","rustls-tls","cookies"]}
[build-dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
quote="1"
http="0.2"
convert_case="0.6"