From aab47577a75e54068c0a7562749e1fbe3b6884f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Wed, 22 May 2024 21:28:07 +0200 Subject: [PATCH] feat(project): initial deps and project info Updated `Cargo.toml` with some more package info and added initial dependencies for this project. --- Cargo.toml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aefe99d..8fbc523 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,16 @@ [package] -name = "float-sequencer" -version = "0.1.0" +name = "fsn" +description = "FloatTorrent Generator for FMF PROG2 2023/24" +readme = "README.md" +version = "0.0.1" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +license = "MIT" +authors = ["Matej Janežič "] +repository = "https://git.janezic.dev/janezicmatej/float-sequencer.git" [dependencies] +tokio = { version = "1.37.0", features = [ "macros", "rt-multi-thread", "net" ] } +hyper = { version = "1.3.1", features = [ "full" ] } +hyper-util = { version = "0.1.3", features = [ "full" ]} +serde = { version = "1.0.202", features = [ "derive" ] } +serde_json = "1.0.117"