diff options
author | Moon Man <shitposterclub@gmail.com> | 2018-09-05 00:21:44 -0400 |
---|---|---|
committer | Moon Man <shitposterclub@gmail.com> | 2018-09-05 00:21:44 -0400 |
commit | 1a8bc26e52745909d6fc9ca7d04098d0dd247cfa (patch) | |
tree | 1ae570dc397ae8e7708bff81fd25389a951f6c12 /mix.exs | |
parent | 8143251f06b1a781ee20924c89be484e514f0bec (diff) | |
download | pleroma-1a8bc26e52745909d6fc9ca7d04098d0dd247cfa.tar.gz pleroma-1a8bc26e52745909d6fc9ca7d04098d0dd247cfa.zip |
auth against sha512-crypt password hashes, upgrade to pbkdf2
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -50,7 +50,8 @@ defmodule Pleroma.Mixfile do {:ex_aws_s3, "~> 2.0"}, {:ex_machina, "~> 2.2", only: :test}, {:credo, "~> 0.9.3", only: [:dev, :test]}, - {:mock, "~> 0.3.1", only: :test} + {:mock, "~> 0.3.1", only: :test}, + {:crypt, git: "https://github.com/msantos/crypt"} ] end |