mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-11 17:44:19 -05:00
add repo and homepage
This commit is contained in:
52
Cargo.lock
generated
52
Cargo.lock
generated
@@ -39,7 +39,7 @@ dependencies = [
|
||||
"dotenv",
|
||||
"envy",
|
||||
"logger",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"serde",
|
||||
"termination_signal",
|
||||
"tokio",
|
||||
@@ -2009,7 +2009,7 @@ name = "logger"
|
||||
version = "1.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"opentelemetry",
|
||||
"opentelemetry-otlp",
|
||||
"opentelemetry_sdk",
|
||||
@@ -2091,7 +2091,7 @@ dependencies = [
|
||||
"envy",
|
||||
"logger",
|
||||
"mongo_indexed",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"mungos",
|
||||
"serde",
|
||||
"termination_signal",
|
||||
@@ -2217,7 +2217,7 @@ dependencies = [
|
||||
"clap",
|
||||
"colored",
|
||||
"futures",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"partial_derive2",
|
||||
"serde",
|
||||
"serde_json",
|
||||
@@ -2260,6 +2260,40 @@ dependencies = [
|
||||
"uuid",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "monitor_client"
|
||||
version = "1.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "6349d2caa7828bf9561bf61e2612bfa6541d6ede5c90049756095df74358c3a0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async_timing_util",
|
||||
"bollard",
|
||||
"clap",
|
||||
"derive_builder",
|
||||
"derive_default_builder",
|
||||
"derive_empty_traits",
|
||||
"derive_variants",
|
||||
"envy",
|
||||
"futures",
|
||||
"mongo_indexed",
|
||||
"mungos",
|
||||
"partial_derive2",
|
||||
"reqwest 0.12.4",
|
||||
"resolver_api",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"serror",
|
||||
"strum 0.26.2",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"tokio-tungstenite",
|
||||
"tokio-util",
|
||||
"tracing",
|
||||
"typeshare",
|
||||
"uuid",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "monitor_core"
|
||||
version = "1.3.0"
|
||||
@@ -2281,7 +2315,7 @@ dependencies = [
|
||||
"logger",
|
||||
"merge_config_files",
|
||||
"mongo_indexed",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"mungos",
|
||||
"parse_csl",
|
||||
"partial_derive2",
|
||||
@@ -2321,7 +2355,7 @@ dependencies = [
|
||||
"envy",
|
||||
"logger",
|
||||
"merge_config_files",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"parse_csl",
|
||||
"periphery_client",
|
||||
"resolver_api",
|
||||
@@ -2640,7 +2674,7 @@ name = "periphery_client"
|
||||
version = "1.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"reqwest 0.12.4",
|
||||
"resolver_api",
|
||||
"serde",
|
||||
@@ -3642,7 +3676,7 @@ dependencies = [
|
||||
"dotenv",
|
||||
"envy",
|
||||
"logger",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"mungos",
|
||||
"partial_derive2",
|
||||
"rand",
|
||||
@@ -4196,7 +4230,7 @@ version = "1.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"logger",
|
||||
"monitor_client",
|
||||
"monitor_client 1.3.0",
|
||||
"termination_signal",
|
||||
"tokio",
|
||||
"tracing",
|
||||
|
||||
@@ -7,6 +7,8 @@ version = "1.3.0"
|
||||
edition = "2021"
|
||||
authors = ["mbecker20 <becker.maxh@gmail.com>"]
|
||||
license = "GPL-3.0-or-later"
|
||||
repository = "https://github.com/mbecker20/monitor"
|
||||
homepage = "https://docs.monitor.mogh.tech"
|
||||
|
||||
[workspace.dependencies]
|
||||
# LOCAL
|
||||
|
||||
@@ -4,6 +4,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@@ -5,6 +5,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[[bin]]
|
||||
name = "monitor"
|
||||
@@ -12,9 +14,12 @@ path = "src/main.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[patch.crates-io]
|
||||
monitor_client.workspace = true
|
||||
|
||||
[dependencies]
|
||||
# local client
|
||||
monitor_client.workspace = true
|
||||
monitor_client = "1.3.0"
|
||||
# mogh
|
||||
partial_derive2.workspace = true
|
||||
# external
|
||||
|
||||
@@ -4,6 +4,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[[bin]]
|
||||
name = "core"
|
||||
|
||||
@@ -4,6 +4,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@@ -4,6 +4,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[[bin]]
|
||||
name = "periphery"
|
||||
|
||||
@@ -4,6 +4,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@@ -5,6 +5,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@@ -4,6 +4,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@@ -4,6 +4,8 @@ version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
Reference in New Issue
Block a user