2 Commits
Author SHA1 Message Date
Dreaded_X 003b28a841 feat: Add function that applies netmask to ip
Committed / committed (pull_request) Successful in 46s
CI / prek (pull_request) Has been cancelled
CI / cargo shear (pull_request) Has been cancelled
2026-04-21 04:46:31 +02:00
Dreaded_X 108db75dc9 refactor: Use ViaDeserialize to convert ip address 2026-04-21 04:43:18 +02:00
4 changed files with 514 additions and 356 deletions
+1 -2
View File
@@ -7,7 +7,6 @@ on:
- "**/Cargo.lock"
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
audit:
@@ -23,6 +22,6 @@ jobs:
- name: Setup rust cache
uses: Swatinem/rust-cache@v2
- name: Audit check
uses: https://git.huizinga.dev/infra/rust-audit-check@v3.0.0
uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITEA_TOKEN }}
-17
View File
@@ -7,23 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.3](https://git.huizinga.dev/infra/crete/compare/v0.1.2...v0.1.3) - 2026-04-21
### <!-- 0 -->Features
- Add function that applies netmask to ip
### <!-- 3 -->Refactor
- Use ViaDeserialize to convert ip address
## [0.1.2](https://git.huizinga.dev/infra/crete/compare/v0.1.1...v0.1.2) - 2026-04-17
### <!-- 0 -->Features
- Make dns optional
- Allow more than two dns entries
## [0.1.1](https://git.huizinga.dev/infra/crete/compare/v0.1.0...v0.1.1) - 2026-04-13
### <!-- 2 -->Bug Fixes
Generated
+511 -335
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "crete"
version = "0.1.3"
version = "0.1.1"
edition = "2024"
default-run = "crete"
publish = ["infra"]
@@ -16,7 +16,7 @@ serde_json = "1.0.149"
[dependencies]
clap = { version = "4.6.0", features = ["derive"] }
clap_complete = "4.6.0"
gix-discover = { version = "0.55.0", features = ["sha1"] }
gix-discover = { version = "0.49.0", features = ["sha1"] }
minijinja = { version = "2.18.0", features = ["json", "loader"] }
optional_struct = "0.5.2"
reqwest = { version = "0.13.2", default-features = false, features = [