feat: add initial dependencies

This commit is contained in:
Matej Janezic 2024-05-21 19:54:47 +02:00
parent 4b96f584cf
commit f62c4646dd
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 12 additions and 4 deletions

View File

@ -1,8 +1,16 @@
[package] [package]
name = "float-sequencer" name = "fsn"
version = "0.1.0" description = "template for advent of code"
readme = "README.md"
version = "0.0.1"
edition = "2021" edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html authors = ["Matej Janežič <janezic.mj@gmail.com>"]
repository = "https://git.janezic.dev/janezicmatej/float-sequence-node.git"
[dependencies] [dependencies]
dotenvy = "0.15.7"
tokio = { version = "1.37.0", features = [ "macros", "rt-multi-thread" ] }
hyper = { version = "1.3.1", features = [ "client", "server" ] }
serde = { version = "1.0.202", features = [ "derive" ] }
serde_json = "1.0.117"