You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/basic/.perseus/server/src/main.rs
+2
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@ use std::fs;
19
19
#[cfg(feature = "integration-actix-web")]
20
20
#[actix_web::main]
21
21
asyncfnmain() -> std::io::Result<()>{
22
+
println!("WARNING: The Actix Web integration uses a beta version of Actix Web, and is considered unstable. It is not recommended for production usage.");
// If we're using the Actix Web integration, warn that it's unstable
46
+
// A similar warning is emitted for snooping on it
47
+
// TODO Remove this once Actix Web v4.0.0 goes stable
48
+
if integration == Integration::ActixWeb{
49
+
println!("WARNING: The Actix Web integration uses a beta version of Actix Web, and is considered unstable. It is not recommended for production usage.")
0 commit comments