[package] name = "tide-csrf" version = "0.1.1" authors = ["Michael Alyn Miller "] description = "Cross-Site Request Forgery (CSRF) protection middleware for Tide" keywords = ["tide", "csrf", "security"] categories = ["web-programming", "web-programming::http-server"] edition = "2018" license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/malyn/tide-csrf" exclude = [ ".editorconfig", ".gitattributes", ".github", ".gitignore" ] [dependencies] csrf = "0.4.1" data-encoding = "2.0.0" hkdf = "0.11.0" serde_urlencoded = "0.7" sha2 = "0.9.0" tide = { version = "0.16.0", default-features = false, features = ["cookies"] } [dev-dependencies] async-std = { version = "1.9.0", features = ["attributes"] } serde = { version = "1.0.126", features = ["derive"] } tide = "0.16.0" tide-testing = "0.1"