rocket_csrf/Cargo.toml

20 lines
631 B
TOML
Raw Permalink Normal View History

2020-10-16 21:41:07 +00:00
[package]
name = "rocket_csrf"
2022-07-13 04:38:50 +00:00
version = "0.3.0"
2020-10-16 21:41:07 +00:00
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2018"
2020-10-16 21:56:57 +00:00
description = "CSRF (Cross-Site Request Forgery) protection for Rocket web framework"
2020-10-16 22:03:42 +00:00
readme = true
2020-10-16 21:56:57 +00:00
homepage = "https://github.com/kotovalexarian/rocket_csrf"
repository = "https://github.com/kotovalexarian/rocket_csrf.git"
license = "MIT"
keywords = ["csrf", "http", "rocket", "security", "web"]
categories = ["web-programming"]
publish = true
2020-10-16 21:41:07 +00:00
[dependencies]
2020-10-17 00:19:20 +00:00
base64 = { version = "0.13.0" }
2021-03-06 02:53:48 +00:00
bcrypt = { version = "0.9" }
rand = { version = "0.8.3" }
2022-05-17 07:00:52 +00:00
rocket = { version = "0.5.0-rc.2", features = ["secrets"] }