mirror of
https://github.com/lldap/lldap.git
synced 2026-03-31 15:07:48 +01:00
cargo: Migrate metadata to workspace
This commit is contained in:
committed by
nitnelave
parent
5afcdbda65
commit
e18f2af54f
+9
-8
@@ -1,21 +1,22 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"crates/auth",
|
|
||||||
"crates/domain",
|
|
||||||
"crates/domain-model",
|
|
||||||
"crates/domain-handlers",
|
|
||||||
"crates/frontend-options",
|
|
||||||
"crates/validation",
|
|
||||||
"server",
|
"server",
|
||||||
"app",
|
"app",
|
||||||
"migration-tool",
|
"migration-tool",
|
||||||
"set-password",
|
"set-password",
|
||||||
|
"crates/*",
|
||||||
]
|
]
|
||||||
|
|
||||||
default-members = ["server"]
|
default-members = ["server"]
|
||||||
|
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
||||||
|
documentation = "https://github.com/lldap/lldap"
|
||||||
|
edition = "2024"
|
||||||
|
homepage = "https://github.com/lldap/lldap"
|
||||||
|
license = "GPL-3.0-only"
|
||||||
|
repository = "https://github.com/lldap/lldap"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = true
|
lto = true
|
||||||
|
|
||||||
|
|||||||
+6
-6
@@ -1,13 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
name = "lldap_app"
|
||||||
|
version = "0.6.2-alpha"
|
||||||
description = "Frontend for LLDAP"
|
description = "Frontend for LLDAP"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = "https://github.com/lldap/lldap"
|
|
||||||
license = "GPL-3.0-only"
|
|
||||||
name = "lldap_app"
|
|
||||||
repository = "https://github.com/lldap/lldap"
|
|
||||||
version = "0.6.2-alpha"
|
|
||||||
include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"]
|
include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"]
|
||||||
|
authors.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
name = "lldap_auth"
|
||||||
|
version = "0.6.0"
|
||||||
description = "Authentication protocol for LLDAP"
|
description = "Authentication protocol for LLDAP"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = "https://github.com/lldap/lldap"
|
authors.workspace = true
|
||||||
license = "GPL-3.0-only"
|
homepage.workspace = true
|
||||||
name = "lldap_auth"
|
license.workspace = true
|
||||||
repository = "https://github.com/lldap/lldap"
|
repository.workspace = true
|
||||||
version = "0.6.0"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["opaque_server", "opaque_client"]
|
default = ["opaque_server", "opaque_client"]
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
|
||||||
name = "lldap_domain_handlers"
|
name = "lldap_domain_handlers"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
authors.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
test = []
|
test = []
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
|
||||||
name = "lldap_domain_model"
|
name = "lldap_domain_model"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
authors.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
test = []
|
test = []
|
||||||
|
|||||||
@@ -1,11 +1,14 @@
|
|||||||
[package]
|
[package]
|
||||||
|
name = "lldap_domain"
|
||||||
|
version = "0.1.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Valentin Tolmer <valentin@tolmer.fr>",
|
"Valentin Tolmer <valentin@tolmer.fr>",
|
||||||
"Simon Broeng Jensen <sbj@cwconsult.dk>",
|
"Simon Broeng Jensen <sbj@cwconsult.dk>",
|
||||||
]
|
]
|
||||||
name = "lldap_domain"
|
|
||||||
version = "0.1.0"
|
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
homepage.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
test = []
|
test = []
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr"]
|
|
||||||
description = "Frontend options for LLDAP"
|
|
||||||
edition = "2024"
|
|
||||||
homepage = "https://github.com/lldap/lldap"
|
|
||||||
license = "GPL-3.0-only"
|
|
||||||
name = "lldap_frontend_options"
|
name = "lldap_frontend_options"
|
||||||
repository = "https://github.com/lldap/lldap"
|
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
description = "Frontend options for LLDAP"
|
||||||
|
authors.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
|
||||||
[dependencies.serde]
|
[dependencies.serde]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
[package]
|
[package]
|
||||||
|
name = "lldap_validation"
|
||||||
|
version = "0.6.0"
|
||||||
authors = ["Simon Broeng Jensen <sbj@cwconsult.dk>"]
|
authors = ["Simon Broeng Jensen <sbj@cwconsult.dk>"]
|
||||||
description = "Validation logic for LLDAP"
|
description = "Validation logic for LLDAP"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = "https://github.com/lldap/lldap"
|
homepage.workspace = true
|
||||||
license = "GPL-3.0-only"
|
license.workspace = true
|
||||||
name = "lldap_validation"
|
repository.workspace = true
|
||||||
repository = "https://github.com/lldap/lldap"
|
|
||||||
version = "0.6.0"
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
name = "lldap_migration_tool"
|
||||||
|
version = "0.4.2"
|
||||||
description = "CLI migration tool to go from OpenLDAP to LLDAP"
|
description = "CLI migration tool to go from OpenLDAP to LLDAP"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = "https://github.com/lldap/lldap"
|
authors.workspace = true
|
||||||
license = "GPL-3.0-only"
|
homepage.workspace = true
|
||||||
name = "lldap_migration_tool"
|
license.workspace = true
|
||||||
repository = "https://github.com/lldap/lldap"
|
repository.workspace = true
|
||||||
version = "0.4.2"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "*"
|
anyhow = "*"
|
||||||
|
|||||||
+8
-8
@@ -1,14 +1,14 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
|
||||||
categories = ["authentication", "command-line-utilities"]
|
|
||||||
description = "Super-simple and lightweight LDAP server"
|
|
||||||
edition = "2021"
|
|
||||||
homepage = "https://github.com/lldap/lldap"
|
|
||||||
keywords = ["cli", "ldap", "graphql", "server", "authentication"]
|
|
||||||
license = "GPL-3.0-only"
|
|
||||||
name = "lldap"
|
name = "lldap"
|
||||||
repository = "https://github.com/lldap/lldap"
|
|
||||||
version = "0.6.2-alpha"
|
version = "0.6.2-alpha"
|
||||||
|
description = "Super-simple and lightweight LDAP server"
|
||||||
|
categories = ["authentication", "command-line-utilities"]
|
||||||
|
edition = "2021"
|
||||||
|
keywords = ["cli", "ldap", "graphql", "server", "authentication"]
|
||||||
|
authors.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix = "0.13"
|
actix = "0.13"
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
name = "lldap_set_password"
|
||||||
|
version = "0.1.0"
|
||||||
description = "CLI tool to set a user password in LLDAP"
|
description = "CLI tool to set a user password in LLDAP"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
homepage = "https://github.com/lldap/lldap"
|
authors.workspace = true
|
||||||
license = "GPL-3.0-only"
|
homepage.workspace = true
|
||||||
name = "lldap_set_password"
|
license.workspace = true
|
||||||
repository = "https://github.com/lldap/lldap"
|
repository.workspace = true
|
||||||
version = "0.1.0"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user