6 Commits
Author SHA1 Message Date
KD 6743a808b9 Merge branch 'version_bump' into 'main'
Version bump

See merge request kdeng00/clean_file!4
2025-03-09 18:56:00 +00:00
KD b2116332ed Version bump 2025-03-09 18:56:00 +00:00
KD ad3c350707 Merge branch 'ver_up' into 'main'
Updating rust edition

See merge request kdeng00/clean_file!3
2025-03-09 03:10:00 +00:00
phoenix f4937514dd Updating rust edition 2025-03-08 22:08:20 -05:00
KD 04f0c03db7 Merge branch 'ci' into 'main'
Added workflow file

See merge request kdeng00/clean_file!1
2025-03-09 03:06:12 +00:00
phoenix c810a85da0 Added workflow file 2025-03-08 22:02:33 -05:00
2 changed files with 34 additions and 4 deletions
+29
View File
@@ -0,0 +1,29 @@
stages:
- build
- test
build:
stage: build
image: rust:1.85
script:
- cargo build --release
artifacts:
paths:
- target/release/clean_file
expire_in: 1 week
cache:
key: "cargo-cache"
paths:
- target/
- ~/.cargo/
test:
stage: test
image: rust:1.85
script:
- cargo test
cache:
key: "cargo-cache"
paths:
- target/
- ~/.cargo/
+5 -4
View File
@@ -1,10 +1,11 @@
[package]
name = "clean_file"
version = "0.2.0"
edition = "2021"
description = "Software tool that sanitizes a list of phone numbers"
version = "0.3.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.140"