Skip to content

Commit

Permalink
semver
Browse files Browse the repository at this point in the history
  • Loading branch information
bestia.dev committed May 4, 2024
1 parent cfc32f3 commit 8322f24
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "cargo-auto"
# binary executable does not need to be SemVer, because nobody depends on it
version = "2024.504.1814"
authors = ["bestia.dev"]
homepage = "https://bestia.dev"
Expand All @@ -21,6 +22,9 @@ include = [
]

[dependencies]
# SemVer rules: Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable.
# WARNING: Although dependecies in Cargo.toml look like a specific version of the crate, they are just like a carret version (^x.y.z) and actually specify
# the minimum version and allow automatic SemVer compatible updates up to a MAJOR increment! Always check the true version with `cargo tree`!
lazy_static="^1.4.0"
base64ct = {version = "^1.6.0", features = ["alloc"] }
json5 = "^0.4.1"
Expand Down
10 changes: 6 additions & 4 deletions automation_tasks_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
[package]
name = "automation_tasks_rs"
# binary executable does not need to be SemVer, because nobody depends on it
version = "1.0.0"
authors = ["bestia.dev"]
homepage = "https://bestia.dev"
edition = "2021"
description = "Automation tasks coded in Rust language for the workflow of Rust projects"
publish = false

[dependencies]# the dependency to crates.io must be set for the GitHub action to succeed.
cargo_auto_lib = "2.4.8"
# cargo_auto_lib = {path="../../cargo_auto_lib"}

[dependencies]
# SemVer rules: Major version zero (0.y.z) is for initial development. Anything MAY change at any time. The public API SHOULD NOT be considered stable.
# WARNING: Although dependecies in Cargo.toml look like a specific version of the crate, they are just like a carret version (^x.y.z) and actually specify
# the minimum version and allow automatic SemVer compatible updates up to a MAJOR increment! Always check the true version with `cargo tree`!
cargo_auto_lib = {version = "2.4.8", path="../../cargo_auto_lib"}
cargo_auto_github_lib = "1.1.6"
cargo_auto_encrypt_secret_lib = "1.1.7"

Expand Down

0 comments on commit 8322f24

Please sign in to comment.