Compare commits

..

2 commits

Author SHA1 Message Date
b459e6a3c1
WIP: Registration 2025-05-05 11:52:22 +02:00
5ea8635a54
chore(rust): Bump to 2024 edition 2025-05-05 11:52:10 +02:00
7 changed files with 28 additions and 6 deletions
Cargo.toml
agent
controller
instrumentation
node-registration
trace-request
xtask

View file

@ -17,7 +17,7 @@ default-members = [
[workspace.package]
version = "0.2.0"
edition = "2021"
edition = "2024"
[workspace.metadata.crane]
name = "patagia-run"

View file

@ -1,6 +1,6 @@
[package]
name = "patagia-agent"
edition = "2021"
edition = "2024"
license = "MPL-2.0"
version.workspace = true

View file

@ -1,7 +1,7 @@
[package]
name = "patagia-controller"
description = "Patagia control plane server"
edition = "2021"
edition = "2024"
license = "MPL-2.0"
version.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "instrumentation"
edition = "2021"
edition = "2024"
license = "MPL-2.0"
version.workspace = true

View file

@ -0,0 +1,22 @@
[package]
name = "node-registration"
edition = "2023"
license = "MPL-2.0"
version.workspace = true
[dependencies]
anyhow.workspace = true
chrono.workspace = true
clap.workspace = true
futures.workspace = true
instrumentation = { path = "../instrumentation" }
progenitor.workspace = true
reqwest.workspace = true
schemars.workspace = true
serde.workspace = true
tokio.workspace = true
tracing.workspace = true
uuid.workspace = true
[package.metadata.cargo-machete]
ignored = ["reqwest", "serde"]

View file

@ -1,6 +1,6 @@
[package]
name = "trace-request"
edition = "2021"
edition = "2024"
license = "MPL-2.0"
version.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "xtask"
edition = "2021"
edition = "2024"
version.workspace = true
[[bin]]