mirror of
https://github.com/kotovalexarian/rocket_csrf.git
synced 2025-04-21 17:22:23 -04:00
Remove "^"
This commit is contained in:
parent
5b3c50d42c
commit
53c7b47cfe
2 changed files with 7 additions and 7 deletions
|
@ -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"] }
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue