Skip to content

Instantly share code, notes, and snippets.

@arlllk
Last active November 18, 2020 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arlllk/9098dbf4aab25c308f92fdc622d6f7d2 to your computer and use it in GitHub Desktop.
Save arlllk/9098dbf4aab25c308f92fdc622d6f7d2 to your computer and use it in GitHub Desktop.
[package]
name = "****"
version = "0.0.1"
authors = ["***"]
edition = "2018"
[dependencies]
actix-web = { version = "3.2.0", features = ["rustls", "secure-cookies", "compress"] }
actix-rt = "1.1.1"
actix-cors = "0.5.1"
lazy_static = "1.4.0" # Crear variables que son evaluadas una vez, de forma lazy
serde = "1.0.117" # Serializar y deserializar
serde_json = "1.0.59" # Serializar y deserializar JSON
envfile = "0.2.1"
envmnt = "0.8.4" # Uso de variables de ambiente mas comodo
futures = "0.3.8"
thiserror = "1.0.22" # Para manejar errores
rayon = "1.5.0" # Multithreading sin darse cuenta
rust-argon2 = "0.8.2"
jsonwebtoken = "7.2.0"
rust-crypto = "0.2.36"
rand = "0.7.3"
uuid = { version = "0.8.1", features = ["serde", "v4"] }
deadpool-postgres = { version = "0.5.6", features = ["config"] }
tokio-pg-mapper = { version = "0.1.8", features = ["derive"] }
tokio-postgres = { version = "0.5.5", features = ["with-uuid-0_8", "with-chrono-0_4"] }
postgres-types = { version = "0.1.3", features = ["derive", "with-chrono-0_4", "with-uuid-0_8", ] }
refinery = { version = "0.4.0", features = ["tokio-postgres"] } # Para migraciones
rust_decimal = { version = "1.8.1", features = ["db-tokio-postgres"] } # Para decimal
chrono = { version = "0.4.13", features = ["pure-rust-locales", "serde", "unstable-locales"] }
validator = { version = "0.11.0", features = ["derive", "unic"] }
config = "0.10.1"
log = { version = "0.4.11", features = ["serde", "std"] }
pretty_env_logger = "0.4.0"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment