diff --git a/Cargo.toml b/Cargo.toml index aefe99d..0db285d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,17 @@ [package] -name = "float-sequencer" -version = "0.1.0" +name = "fsn" +description = "template for advent of code" +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-sequence-node.git" [dependencies] +dotenvy = "0.15.7" +tokio = { version = "1.37.0", features = [ "macros", "rt-multi-thread" ] } +hyper = { version = "1.3.1", features = [ "client", "server" ] } +hyper-util = "0.1.3" +serde = { version = "1.0.202", features = [ "derive" ] } +serde_json = "1.0.117"