HambiMap/Cargo.toml
2023-06-05 14:02:10 +02:00

27 lines
864 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "HambiMap"
version = "0.1.0"
authors = ["Gandalf <gandalfderbunte@riseup.net>"]
edition = "2018"
[dependencies]
tokio = { version = "0.2", features = ["macros"] }
warp = "0.2"
mobc-postgres = { version = "0.5", features = ["with-chrono-0_4"] }
mobc = "0.5"
serde = {version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
# tokio is our async runtime, which we need to execute futures
# warp is our web framework
# mobc / mobc-postgres represents an asynchronous connection pool for our database connections
# serde is for serializing and deserializing objects (e.g., to/from JSON)
# thiserror is a utility library well use for error handling
# chrono represents time and date utilities
# Questions: async vs sync
# which database to use?