forked from proxmox-mirrors/proxmox
add proxmox-apt and proxmox-openid to workspace
and fixup d/copyright Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
6253f263ce
commit
077a83f401
@ -1,6 +1,7 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"proxmox-api-macro",
|
"proxmox-api-macro",
|
||||||
|
"proxmox-apt",
|
||||||
"proxmox-async",
|
"proxmox-async",
|
||||||
"proxmox-auth-api",
|
"proxmox-auth-api",
|
||||||
"proxmox-borrow",
|
"proxmox-borrow",
|
||||||
@ -11,6 +12,7 @@ members = [
|
|||||||
"proxmox-ldap",
|
"proxmox-ldap",
|
||||||
"proxmox-login",
|
"proxmox-login",
|
||||||
"proxmox-metrics",
|
"proxmox-metrics",
|
||||||
|
"proxmox-openid",
|
||||||
"proxmox-rest-server",
|
"proxmox-rest-server",
|
||||||
"proxmox-router",
|
"proxmox-router",
|
||||||
"proxmox-schema",
|
"proxmox-schema",
|
||||||
@ -32,6 +34,7 @@ authors = ["Proxmox Support Team <support@proxmox.com>"]
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "AGPL-3"
|
license = "AGPL-3"
|
||||||
repository = "https://git.proxmox.com/?p=proxmox.git"
|
repository = "https://git.proxmox.com/?p=proxmox.git"
|
||||||
|
homepage = "https://proxmox.com"
|
||||||
exclude = [ "debian" ]
|
exclude = [ "debian" ]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
|
@ -1,28 +1,23 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "proxmox-apt"
|
name = "proxmox-apt"
|
||||||
version = "0.9.3"
|
version = "0.9.3"
|
||||||
authors = [
|
|
||||||
"Fabian Ebner <f.ebner@proxmox.com>",
|
|
||||||
"Proxmox Support Team <support@proxmox.com>",
|
|
||||||
]
|
|
||||||
edition = "2021"
|
|
||||||
license = "AGPL-3"
|
|
||||||
description = "Proxmox library for APT"
|
description = "Proxmox library for APT"
|
||||||
homepage = "https://www.proxmox.com"
|
authors.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
|
||||||
exclude = [ "debian" ]
|
exclude = [ "debian" ]
|
||||||
|
|
||||||
[lib]
|
|
||||||
name = "proxmox_apt"
|
|
||||||
path = "src/lib.rs"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow.workspace = true
|
||||||
hex = "0.4.3"
|
hex.workspace = true
|
||||||
once_cell = "1.3.1"
|
once_cell.workspace = true
|
||||||
openssl = "0.10"
|
openssl.workspace = true
|
||||||
rfc822-like = "0.2.1"
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde_json.workspace = true
|
||||||
serde_json = "1.0.41"
|
|
||||||
|
|
||||||
proxmox-schema = { version = "1", features = [ "api-macro" ] }
|
rfc822-like = "0.2.1"
|
||||||
|
|
||||||
|
proxmox-schema = { workspace = true, features = [ "api-macro" ] }
|
||||||
|
@ -1,16 +1,18 @@
|
|||||||
Copyright (C) 2021 Proxmox Server Solutions GmbH
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
|
||||||
This software is written by Proxmox Server Solutions GmbH <support@proxmox.com>
|
Files:
|
||||||
|
*
|
||||||
This program is free software: you can redistribute it and/or modify
|
Copyright: 2019 - 2023 Proxmox Server Solutions GmbH <support@proxmox.com>
|
||||||
it under the terms of the GNU Affero General Public License as published by
|
License: AGPL-3.0-or-later
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
(at your option) any later version.
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
Software Foundation, either version 3 of the License, or (at your option) any
|
||||||
This program is distributed in the hope that it will be useful,
|
later version.
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
.
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
GNU Affero General Public License for more details.
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||||
You should have received a copy of the GNU Affero General Public License
|
details.
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
.
|
||||||
|
You should have received a copy of the GNU Affero General Public License along
|
||||||
|
with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
@ -1,29 +1,27 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "proxmox-openid"
|
name = "proxmox-openid"
|
||||||
version = "0.9.9"
|
version = "0.9.9"
|
||||||
authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
|
authors.workspace = true
|
||||||
edition = "2018"
|
edition.workspace = true
|
||||||
license = "AGPL-3"
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
exclude = [
|
exclude = [
|
||||||
"build",
|
"build",
|
||||||
"debian",
|
"debian",
|
||||||
]
|
]
|
||||||
|
|
||||||
[lib]
|
|
||||||
name = "proxmox_openid"
|
|
||||||
path = "src/lib.rs"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow.workspace = true
|
||||||
http = "0.2"
|
http.workspace = true
|
||||||
nix = "0.26"
|
nix.workspace = true
|
||||||
openidconnect = { version = "2.4", default-features = false, features = ["accept-rfc3339-timestamps"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde_json.workspace = true
|
||||||
serde_json = "1.0"
|
thiserror = "1"
|
||||||
thiserror="1.0"
|
native-tls.workspace = true
|
||||||
ureq = { version = "2.4", default-features = false, features = ["native-tls", "gzip"] }
|
url.workspace = true
|
||||||
native-tls = "0.2"
|
|
||||||
url = "2.1"
|
|
||||||
|
|
||||||
proxmox-time = "1"
|
openidconnect = { version = "2.4", default-features = false, features = ["accept-rfc3339-timestamps"] }
|
||||||
proxmox-sys = { version = "0.4", features = ["timer"] }
|
ureq = { version = "2.4", default-features = false, features = ["native-tls", "gzip"] }
|
||||||
|
|
||||||
|
proxmox-time.workspace = true
|
||||||
|
proxmox-sys = { workspace = true, features = ["timer"] }
|
||||||
|
@ -1,16 +1,18 @@
|
|||||||
Copyright (C) 2020-2021 Proxmox Server Solutions GmbH
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
|
||||||
This software is written by Proxmox Server Solutions GmbH <support@proxmox.com>
|
Files:
|
||||||
|
*
|
||||||
This program is free software: you can redistribute it and/or modify
|
Copyright: 2019 - 2023 Proxmox Server Solutions GmbH <support@proxmox.com>
|
||||||
it under the terms of the GNU Affero General Public License as published by
|
License: AGPL-3.0-or-later
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
This program is free software: you can redistribute it and/or modify it under
|
||||||
(at your option) any later version.
|
the terms of the GNU Affero General Public License as published by the Free
|
||||||
|
Software Foundation, either version 3 of the License, or (at your option) any
|
||||||
This program is distributed in the hope that it will be useful,
|
later version.
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
.
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
GNU Affero General Public License for more details.
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||||
You should have received a copy of the GNU Affero General Public License
|
details.
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
.
|
||||||
|
You should have received a copy of the GNU Affero General Public License along
|
||||||
|
with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
Loading…
Reference in New Issue
Block a user