Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ chrono = { version = "0.4" }
clap = { version = "4.5", features = ["derive"] }
# dsc
clap_complete = { version = "4.5" }
# dsc-lib
const-str = {version = "1.0" }
# dsc, registry, dsc-lib-registry, sshdconfig
crossterm = { version = "0.29" }
# dsc
Expand Down Expand Up @@ -255,8 +257,10 @@ cc = { version = "1.2" }
tonic-prost-build = { version = "0.14" }

# test-only dependencies
# dsc-lib-jsonschema
# dsc-lib-jsonschema, dsc-lib
pretty_assertions = { version = "1.4.1" }
# dsc-lib
test-case = { version = "3.3" }

# Workspace crates as dependencies
dsc-lib = { path = "lib/dsc-lib" }
Expand Down
9 changes: 7 additions & 2 deletions lib/dsc-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ base32 = { workspace = true }
base64 = { workspace = true }
chrono = { workspace = true, features = ["alloc"] }
clap = { workspace = true }
const-str = { workspace = true }
derive_builder = { workspace = true }
indicatif = { workspace = true }
jsonschema = { workspace = true }
Expand All @@ -28,7 +29,7 @@ serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
thiserror = { workspace = true }
semver = { workspace = true }
semver = { workspace = true, features = ["serde"] }
tokio = { workspace = true, features = [
"io-util",
"macros",
Expand All @@ -38,7 +39,7 @@ tokio = { workspace = true, features = [
tracing = { workspace = true }
tracing-indicatif = { workspace = true }
tree-sitter = { workspace = true }
tree-sitter-rust = { workspace = true}
tree-sitter-rust = { workspace = true }
uuid = { workspace = true }
url = { workspace = true }
urlencoding = { workspace = true }
Expand All @@ -52,6 +53,10 @@ tree-sitter-dscexpression = { workspace = true }

[dev-dependencies]
serde_yaml = { workspace = true }
# Helps review complex comparisons, like schemas
pretty_assertions = { workspace = true }
# Enables parameterized test cases
test-case = { workspace = true }

[build-dependencies]
cc = { workspace = true }
5 changes: 5 additions & 0 deletions lib/dsc-lib/locales/en-us.toml
Original file line number Diff line number Diff line change
Expand Up @@ -750,9 +750,14 @@ parser = "Parser"
progress = "Progress"
resourceNotFound = "Resource not found"
resourceManifestNotFound = "Resource manifest not found"
resourceVersionToSemverConversion = "Unable to convert arbitrary string resource version to semantic version"
resourceVersionReqToSemverConversion = "Unable to convert arbitrary string resource version requirement to semantic version requirement"
schema = "Schema"
schemaNotAvailable = "No Schema found and `validate` is not supported"
securityContext = "Security context"
semverReqWithBuildMetadataPrefix = "Invalid semantic version requirement: version"
semverReqWithBuildMetadataInfix = "contains the build metadata segment"
semverReqWithBuildMetadataSuffix = "DSC semantic version requirements must not include build metadata."
utf8Conversion = "UTF-8 conversion"
unknown = "Unknown"
validation = "Validation"
Expand Down
Loading