-
This actually doesn't seem too difficult. Consider implementing the `FromRequest` trait for our auth method so we don't have to call a specific method all the time to get the auth object.
https://a…
-
We've seen how difficult it is to use our current ad hoc logs. So I think this is something that is worth doing right.
actix uses logger: https://actix.rs/docs/middleware/#logging
blessed recomme…
-
I've been following the book up to the implementation of logging into /dashboard (page 371). After introducing the seeded user I cannot log into /dashboard. I have a reason to believe that the credent…
-
### Describe the bug
Estuary tracing output:
```
[2024-06-20T16:12:41Z TRACE mio::poll] registering with poller
[2024-06-20T16:12:41Z DEBUG actix_web::middleware::logger] Error in response: Overf…
-
https://actix.rs/api/actix-web/stable/actix_web/server/struct.HttpServer.html#method.bind
https://doc.rust-lang.org/nightly/std/io/struct.Error.html
-
## Steps to Reproduce (for bugs)
### code
```rust
use actix_web::{post, web, App, HttpServer};
use serde::Deserialize;
use log::warn;
#[derive(Deserialize)]
struct Info {
name: String,…
-
After this tweet from @mjackson:
Somebody please stop me from building an actual fetch-based HTTP server for Node.js— MJ (@mjackson) September 9, 2024
I started thinking about what it woul…
-
## Expected Behavior
In a Multipart request, as parts are received a server may validate it, check the size for maximums, and more. If an error occurs and a user need to know about it, the server can…
-
## Actix
actix 是 Rust 生态中的 Actor 系统。actix-web 是在 actix actor 框架和 Tokio 异步 IO 系统之上构建的高级 Web 框架。
本篇博客实践使用 actix-web 实现一个简单的 todo 应用。基本要求:了解 rust 基本语法,了解一定的 sql 和 docker 知识。
## 创建一个 Hello wo…
-
tracking issue
### Discussed in https://github.com/actix/actix-web/discussions/3342
Originally posted by **StealthOrc** April 25, 2024
Hey!
Are there any plans to implement WebTransport su…