1
0
Fork 0
mirror of https://github.com/kotovalexarian/rocket_csrf.git synced 2025-04-21 17:22:23 -04:00

Remove "^"

This commit is contained in:
Alex Kotov 2020-10-17 05:19:20 +05:00
parent 5b3c50d42c
commit 53c7b47cfe
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
2 changed files with 7 additions and 7 deletions

View file

@ -13,6 +13,6 @@ categories = ["web-programming"]
publish = true
[dependencies]
base64 = { version = "^0.13.0" }
rand = { version = "^0.7.3" }
rocket = { version = "^0.4.5", features = ["private-cookies"] }
base64 = { version = "0.13.0" }
rand = { version = "0.7.3" }
rocket = { version = "0.4.5", features = ["private-cookies"] }

View file

@ -6,8 +6,8 @@ edition = "2018"
publish = false
[dependencies]
rocket = "^0.4.5"
rocket = "0.4.5"
rocket_csrf = { path = "../.." }
rocket_contrib = { version = "^0.4.5", features = ["handlebars_templates"] }
serde = "^1.0.117"
serde_derive = "^1.0.117"
rocket_contrib = { version = "0.4.5", features = ["handlebars_templates"] }
serde = "1.0.117"
serde_derive = "1.0.117"