[pbs-devel] [PATCH proxmox-ldap 1/6] initial commit
Lukas Wagner
l.wagner at proxmox.com
Tue Jan 17 15:20:32 CET 2023
Signed-off-by: Lukas Wagner <l.wagner at proxmox.com>
---
.cargo/config | 5 +++++
.gitignore | 2 ++
Cargo.toml | 15 +++++++++++++++
src/lib.rs | 0
4 files changed, 22 insertions(+)
create mode 100644 .cargo/config
create mode 100644 .gitignore
create mode 100644 Cargo.toml
create mode 100644 src/lib.rs
diff --git a/.cargo/config b/.cargo/config
new file mode 100644
index 0000000..3b5b6e4
--- /dev/null
+++ b/.cargo/config
@@ -0,0 +1,5 @@
+[source]
+[source.debian-packages]
+directory = "/usr/share/cargo/registry"
+[source.crates-io]
+replace-with = "debian-packages"
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4fffb2f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/target
+/Cargo.lock
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..9caee04
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,15 @@
+[package]
+name = "proxmox-ldap"
+version = "0.1.0"
+authors = [
+ "Lukas Wagner <l.wagner at proxmox.com>",
+ "Proxmox Support Team <support at proxmox.com>",
+]
+edition = "2021"
+license = "AGPL-3"
+description = "Proxmox library for LDAP authentication/synchronization"
+homepage = "https://www.proxmox.com"
+
+exclude = [ "debian" ]
+
+[dependencies]
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..e69de29
--
2.30.2
More information about the pbs-devel
mailing list