trpl needs openssl

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-02 14:07:33 -05:00
parent ba887b2e97
commit 06535d8348
3 changed files with 2127 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,3 +4,4 @@ version = "0.1.0"
edition = "2021"
[dependencies]
trpl = "0.2.0"

View File

@ -1,5 +1,8 @@
//! Stopped here:
//! https://rust-book.cs.brown.edu/ch17-02-concurrency-with-async.html
//! Concurrency With Async
//!
//! Similar to working with threads.
use std::time::Duration;
fn main() {
println!("Hello, world!");