-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (24 loc) · 880 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
29
30
[package]
name = "auth-microservice"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "auth"
path = "src/auth-service/main.rs"
[[bin]]
name = "client"
path = "src/client/main.rs"
[[bin]]
name = "health-check"
path = "src/health-check-service/main.rs"
[dependencies]
tonic = "0.9" # used by all
prost = "0.11" # used by all
tokio = { version = "1.27", features = ["macros", "rt-multi-thread", "time"] } # used by all
uuid = { version = "1.2", features = ["v4"] } # used by auth and health-check services
pbkdf2 = { version = "0.12", features = ["simple"] } # used by auth service
rand_core = { version = "0.6", features = ["std"] } # used by auth service
clap = { version = "4.2", features = ["derive"] } # used by client
[build-dependencies]
tonic-build = "0.9" # used by all