1
0
Fork 0

Add uuid and remove useless logs

This commit is contained in:
Florian RICHER 2023-01-31 17:45:37 +01:00
parent 2f5a28beb9
commit e46fe9db87
No known key found for this signature in database
GPG key ID: 6BF27BF8A1E71623
3 changed files with 31 additions and 17 deletions

View file

@ -21,6 +21,11 @@ path = "src/client/main.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.2.2", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
] }
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] } # Required for tonic
tokio-stream = { version = "0.1", features = ["net"] } # Required for tonic with unix socket
tower = "0.4" # Required for tonic with unix socket