HambiMap/Cargo.toml

28 lines
869 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"
sqlx =
ormx =
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?
# will probably substitute mobc* for sqlx and keep working with tokio.