feat(project): initial deps and project info

Updated `Cargo.toml` with some more package info and added initial
dependencies for this project.
This commit is contained in:
Matej Janezic 2024-05-22 21:28:07 +02:00
parent 2724260d52
commit aab47577a7
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 12 additions and 4 deletions

View File

@ -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č <janezic.mj@gmail.com>"]
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"