sync::Arc — atomic reference counting. tokio::sync::Arc — same (re-export).
sync::Arc:
tokio::sync::Arc:
1// Same thing2let a = std::sync::Arc::new(5);3let b = tokio::sync::Arc::new(5);
Key: Both are the same Arc.