diff options
author | breezystatic77 | 2025-01-26 12:42:38 -0500 |
---|---|---|
committer | breezystatic77 | 2025-01-26 12:42:38 -0500 |
commit | 38a8771857ae1b366afb0952888eaa3c631df11e (patch) | |
tree | 5f342f3295ee6c54cbabd003b0a73660e5116f8b /Cargo.toml |
initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..87061ab --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "pitch-lake" +version = "0.1.0" +edition = "2021" + +[dependencies] +http-body-util = "0.1.2" +hyper = { version = "1.5.2", features = ["full"] } +hyper-util = { version = "0.1.10", features = ["full"] } +rand = "0.8.5" +rand_pcg = "0.3.1" +rand_seeder = "0.3.0" +tokio = { version = "1.43.0", features = ["full"] } +tracing = "0.1" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } |