all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH proxmox-perl-rs] pve-rs: pmg-rs: move deprecated .cargo/config to .cargo/config.toml
@ 2024-06-20  8:59 Lukas Wagner
  2024-06-20  9:04 ` Lukas Wagner
  2024-06-20 10:21 ` [pve-devel] applied: " Fabian Grünbichler
  0 siblings, 2 replies; 4+ messages in thread
From: Lukas Wagner @ 2024-06-20  8:59 UTC (permalink / raw)
  To: pve-devel

Fixes the following new warning that appeared after switching
to rust 1.77:

warning: `proxmox-perl-rs/pve-rs/.cargo/config` is deprecated in
favor of `config.toml`

Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
---
 pmg-rs/.cargo/{config => config.toml} | 0
 pve-rs/.cargo/{config => config.toml} | 0
 2 files changed, 0 insertions(+), 0 deletions(-)
 rename pmg-rs/.cargo/{config => config.toml} (100%)
 rename pve-rs/.cargo/{config => config.toml} (100%)

diff --git a/pmg-rs/.cargo/config b/pmg-rs/.cargo/config.toml
similarity index 100%
rename from pmg-rs/.cargo/config
rename to pmg-rs/.cargo/config.toml
diff --git a/pve-rs/.cargo/config b/pve-rs/.cargo/config.toml
similarity index 100%
rename from pve-rs/.cargo/config
rename to pve-rs/.cargo/config.toml
-- 
2.39.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pve-devel] [PATCH proxmox-perl-rs] pve-rs: pmg-rs: move deprecated .cargo/config to .cargo/config.toml
  2024-06-20  8:59 [pve-devel] [PATCH proxmox-perl-rs] pve-rs: pmg-rs: move deprecated .cargo/config to .cargo/config.toml Lukas Wagner
@ 2024-06-20  9:04 ` Lukas Wagner
  2024-06-20 10:21 ` [pve-devel] applied: " Fabian Grünbichler
  1 sibling, 0 replies; 4+ messages in thread
From: Lukas Wagner @ 2024-06-20  9:04 UTC (permalink / raw)
  To: pve-devel

Whoops, seems like I was on stable rust (1.78) and the warning only appears there
but not on 1.77 (packaged rust) - but we can apply that already anyway,
saves us the trouble once we are on 1.78 :)

On  2024-06-20 10:59, Lukas Wagner wrote:
> Fixes the following new warning that appeared after switching
> to rust 1.77:
> 
> warning: `proxmox-perl-rs/pve-rs/.cargo/config` is deprecated in
> favor of `config.toml`
> 
> Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
> ---
>  pmg-rs/.cargo/{config => config.toml} | 0
>  pve-rs/.cargo/{config => config.toml} | 0
>  2 files changed, 0 insertions(+), 0 deletions(-)
>  rename pmg-rs/.cargo/{config => config.toml} (100%)
>  rename pve-rs/.cargo/{config => config.toml} (100%)
> 
> diff --git a/pmg-rs/.cargo/config b/pmg-rs/.cargo/config.toml
> similarity index 100%
> rename from pmg-rs/.cargo/config
> rename to pmg-rs/.cargo/config.toml
> diff --git a/pve-rs/.cargo/config b/pve-rs/.cargo/config.toml
> similarity index 100%
> rename from pve-rs/.cargo/config
> rename to pve-rs/.cargo/config.toml

-- 
- Lukas


_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [pve-devel] applied: [PATCH proxmox-perl-rs] pve-rs: pmg-rs: move deprecated .cargo/config to .cargo/config.toml
  2024-06-20  8:59 [pve-devel] [PATCH proxmox-perl-rs] pve-rs: pmg-rs: move deprecated .cargo/config to .cargo/config.toml Lukas Wagner
  2024-06-20  9:04 ` Lukas Wagner
@ 2024-06-20 10:21 ` Fabian Grünbichler
  2024-06-20 10:41   ` Lukas Wagner
  1 sibling, 1 reply; 4+ messages in thread
From: Fabian Grünbichler @ 2024-06-20 10:21 UTC (permalink / raw)
  To: Proxmox VE development discussion

with a follow-up to adapt the Makefiles - please test builds when
touching the build system ;)

On June 20, 2024 10:59 am, Lukas Wagner wrote:
> Fixes the following new warning that appeared after switching
> to rust 1.77:
> 
> warning: `proxmox-perl-rs/pve-rs/.cargo/config` is deprecated in
> favor of `config.toml`
> 
> Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
> ---
>  pmg-rs/.cargo/{config => config.toml} | 0
>  pve-rs/.cargo/{config => config.toml} | 0
>  2 files changed, 0 insertions(+), 0 deletions(-)
>  rename pmg-rs/.cargo/{config => config.toml} (100%)
>  rename pve-rs/.cargo/{config => config.toml} (100%)
> 
> diff --git a/pmg-rs/.cargo/config b/pmg-rs/.cargo/config.toml
> similarity index 100%
> rename from pmg-rs/.cargo/config
> rename to pmg-rs/.cargo/config.toml
> diff --git a/pve-rs/.cargo/config b/pve-rs/.cargo/config.toml
> similarity index 100%
> rename from pve-rs/.cargo/config
> rename to pve-rs/.cargo/config.toml
> -- 
> 2.39.2
> 
> 
> 
> _______________________________________________
> pve-devel mailing list
> pve-devel@lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
> 
> 
> 


_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [pve-devel] applied: [PATCH proxmox-perl-rs] pve-rs: pmg-rs: move deprecated .cargo/config to .cargo/config.toml
  2024-06-20 10:21 ` [pve-devel] applied: " Fabian Grünbichler
@ 2024-06-20 10:41   ` Lukas Wagner
  0 siblings, 0 replies; 4+ messages in thread
From: Lukas Wagner @ 2024-06-20 10:41 UTC (permalink / raw)
  To: Proxmox VE development discussion, Fabian Grünbichler



On  2024-06-20 12:21, Fabian Grünbichler wrote:
> with a follow-up to adapt the Makefiles - please test builds when
> touching the build system ;)
> 

Sorry, only did a `cargo build` - :S My bad

-- 
- Lukas


_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-06-20 10:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-20  8:59 [pve-devel] [PATCH proxmox-perl-rs] pve-rs: pmg-rs: move deprecated .cargo/config to .cargo/config.toml Lukas Wagner
2024-06-20  9:04 ` Lukas Wagner
2024-06-20 10:21 ` [pve-devel] applied: " Fabian Grünbichler
2024-06-20 10:41   ` Lukas Wagner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal