-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from lquerel/26-weaver-registry-check-subcommand
Registry sub-commands
- Loading branch information
Showing
20 changed files
with
367 additions
and
85 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,9 @@ name = "weaver" | |
version = "0.1.0" | ||
authors = ["Laurent Querel <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/f5/otel-weaver" | ||
description = "OTel Weaver - A Schema-Driven Client SDK Generator for OpenTelemetry" | ||
keywords = ["opentelemetry", "client", "schema", "arrow", "generator"] | ||
repository = "https://github.com/open-telemetry/weaver" | ||
description = "Manage semantic convention registry and telemetry schema workflows (OpenTelemetry Project)" | ||
keywords = ["opentelemetry", "semconv", "schema", "registry", "generator"] | ||
categories = ["command-line-utilities"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -29,11 +29,15 @@ serde = { version = "1.0.196", features = ["derive"] } | |
serde_yaml = "0.9.31" | ||
serde_json = "1.0.113" | ||
thiserror = "1.0.56" | ||
ureq = "2.9.5" | ||
ureq = "2.9.6" | ||
regex = "1.10.3" | ||
rayon = "1.8.1" | ||
ordered-float = { version = "4.2.0", features = ["serde"] } | ||
|
||
# Features definition ========================================================= | ||
[features] | ||
experimental = [] | ||
|
||
# Crate definitions =========================================================== | ||
[[bin]] | ||
bench = false | ||
|
@@ -49,7 +53,7 @@ weaver_semconv = { path = "crates/weaver_semconv" } | |
weaver_schema = { path = "crates/weaver_schema" } | ||
weaver_cache = { path = "crates/weaver_cache" } | ||
|
||
clap = { version = "4.5.0", features = ["derive"] } | ||
clap = { version = "4.5.1", features = ["derive"] } | ||
crossterm = "0.27.0" | ||
ratatui = "0.26.1" | ||
tui-textarea = "0.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
crates/weaver_resolver/data/registry-test-1-single-attr-ref/expected-registry.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.