Compare commits

...

3 Commits
v0.4.3 ... main

Author SHA1 Message Date
Valentin Tolmer
dcca768b6c github: Add more folders to ignore for coverage 2023-04-11 17:17:28 +02:00
Valentin Tolmer
ea69b4bead version: bump to 0.4.4-alpha 2023-04-11 17:17:28 +02:00
Valentin Tolmer
7b4188a376 cargo: update cargo.lock 2023-04-11 17:17:28 +02:00
4 changed files with 16 additions and 6 deletions

2
.github/codecov.yml vendored
View File

@ -10,3 +10,5 @@ ignore:
- "docs"
- "example_configs"
- "migration-tool"
- "scripts"
- "set-password"

16
Cargo.lock generated
View File

@ -2345,7 +2345,7 @@ checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
[[package]]
name = "lldap"
version = "0.4.3-alpha"
version = "0.4.4-alpha"
dependencies = [
"actix",
"actix-files",
@ -2405,13 +2405,13 @@ dependencies = [
"tracing-log",
"tracing-subscriber",
"urlencoding",
"uuid 1.3.0",
"uuid 0.8.2",
"webpki-roots",
]
[[package]]
name = "lldap_app"
version = "0.4.3-alpha"
version = "0.4.4-alpha"
dependencies = [
"anyhow",
"base64 0.13.1",
@ -2531,6 +2531,12 @@ dependencies = [
"digest 0.10.6",
]
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
[[package]]
name = "memchr"
version = "2.5.0"
@ -4405,6 +4411,9 @@ name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"md5",
]
[[package]]
name = "uuid"
@ -4413,7 +4422,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
dependencies = [
"getrandom 0.2.8",
"md-5",
]
[[package]]

View File

@ -1,6 +1,6 @@
[package]
name = "lldap_app"
version = "0.4.3"
version = "0.4.4-alpha"
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
edition = "2021"
include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"]

View File

@ -2,7 +2,7 @@
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
edition = "2021"
name = "lldap"
version = "0.4.3"
version = "0.4.4-alpha"
[dependencies]
actix = "0.13"