Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Simone Romano committed Jan 29, 2021
1 parent 119970f commit 171f483
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions acpm-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ actix-web = { version = "3.3.2", default-features = false }
# Basic auth
actix-web-httpauth = "0.5.0"
# Serialization/Deserialization
serde = "1.0.119"
serde = "1.0.123"
# OpenAPI specification with Actix
paperclip = { git = "https://github.com/wafflespeanut/paperclip.git", features = ["actix3-nightly"] }
# Authorization enforcer policies with Adapter for SQLx
sqlx-adapter = { git = "https://github.com/simoneromano96/sqlx-adapter", branch = "upgrade-sqlx", default-features = false, features = ["postgres", "runtime-actix-native-tls", "offline"] }
sqlx-adapter = { git = "https://github.com/casbin-rs/sqlx-adapter", default-features = false, features = ["postgres", "runtime-actix-native-tls", "offline"] }
# SQLx
sqlx = { version = "0.4.2", default-features = false, features = [ "runtime-actix-native-tls", "macros", "postgres", "migrate" ] }
# Config
config = { version = "0.10.1", features = ["yaml"] }
# Lazy evaluation
lazy_static = "1.4.0"
# Logging
log = "0.4.13"
log = "0.4.14"
pretty_env_logger = "0.4.0"
10 changes: 5 additions & 5 deletions identity-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,28 @@ actix-session = "0.4.0"
# Redis Session
actix-redis = "0.9.1"
# Serialization/Deserialization
serde = "1.0.119"
serde = "1.0.123"
# Json specific Serialization/Deserialization
serde_json = "1.0.61"
# Argon password hashing
# argonautica = "0.2.0"
rust-argon2 = "0.8.3"
# Cryptographically Secure Randomness
rand = "0.8.2"
rand = "0.8.3"
# Evaluate some stuff only once
# lazy_static = "1.4.0"
# Mongo DB ODM (Should be merged soon)
wither = { git = "https://github.com/simoneromano96/wither.git", branch = "master" }
# OpenAPI specification with Actix
paperclip = { version = "0.5.0", features = ["actix3-nightly", "actix-session"] }
# GraphQL implementation
async-graphql = { version = "2.5.0" }
async-graphql = "2.5.1"
# GraphQL Actix Adapter
async-graphql-actix-web = "2.5.0"
async-graphql-actix-web = "2.5.1"
config = "0.10.1"
lazy_static = "1.4.0"
# Logging
pretty_env_logger = "0.4.0"
log = "0.4.13"
log = "0.4.14"
# Authorization enforcer policies
# casbin = { version = "2.0.2", features = ["runtime-tokio"] }
8 changes: 4 additions & 4 deletions products-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ actix-redis = "0.9.1"
# Redis client
redis = { version = "0.19.0", features = ["tokio-comp"] }
# Serialization/Deserialization
serde = "1.0.119"
serde = "1.0.123"
# JSON Serialization/Deserialization
serde_json = "1.0.61"
# Mongo DB ODM (Should be merged soon)
wither = { git = "https://github.com/simoneromano96/wither.git" }
# GraphQL implementation
async-graphql = { version = "2.5.0", features = ["log", "tracing"] }
async-graphql = { version = "2.5.1", features = ["log", "tracing"] }
# GraphQL Actix Adapter
async-graphql-actix-web = "2.5.0"
async-graphql-actix-web = "2.5.1"
# Type-safe URLs
url = { version = "2.2.0", features = ["serde"] }
# Futures traits and methods
Expand All @@ -41,6 +41,6 @@ config = { version = "0.10.1", features = ["yaml"] }
lazy_static = "1.4.0"
# Loggers
pretty_env_logger = "0.4.0"
log = "0.4.13"
log = "0.4.14"
# Base64 encode/decode
base64 = "0.13.0"

0 comments on commit 171f483

Please sign in to comment.