Skip to content
This repository was archived by the owner on Oct 7, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiled_starters/docker-starter-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ reqwest = { version = "0.10", features = ["json", "blocking"] } # http requests
bytes = "0.5" # helps wrap responses from reqwest
tokio = { version = "0.2", features = ["full"] } # async http requests
libc = "0.2.103" # for syscalls like chroot
serde = "1.0.136" # for json mangling
serde = { version = "1.0.136", features = ["derive"] } # for json mangling
serde_json = "1.0.79" # for json mangling
2 changes: 1 addition & 1 deletion starter_templates/docker/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ reqwest = { version = "0.10", features = ["json", "blocking"] } # http requests
bytes = "0.5" # helps wrap responses from reqwest
tokio = { version = "0.2", features = ["full"] } # async http requests
libc = "0.2.103" # for syscalls like chroot
serde = "1.0.136" # for json mangling
serde = { version = "1.0.136", features = ["derive"] } # for json mangling
serde_json = "1.0.79" # for json mangling