Skip to content

Commit 98e11dc

Browse files
committed
Bump dependencies
1 parent 840d365 commit 98e11dc

3 files changed

Lines changed: 39 additions & 35 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.5] - 2025-03-03
9+
10+
### Fixed
11+
12+
- Bump dependencies
13+
- Fix for new github release workflow
14+
815
## [0.4.4] - 2025-01-03
916

1017
### Added

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,26 @@
11
[package]
22
name = "git2mail"
3-
version = "0.4.4"
4-
authors = ["exti0p"]
5-
edition = "2021"
3+
version = "0.4.5"
4+
authors = ["extiop"]
5+
edition = "2024"
66
license = "LGPL-3.0-only"
77
description = "Pure Rust OSINT tool to find a GitHub user's email"
8-
repository = "https://github.com/exti0p/git2mail"
8+
repository = "https://github.com/extiop/git2mail"
99
readme = "README.md"
1010
keywords = ["github", "osint", "rust", "leak"]
1111
categories = ["command-line-utilities"]
1212

13-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
14-
1513
[dependencies]
16-
clap = "4.5.31"
17-
itertools = "0.14.0"
18-
openssl = { version = "0.10.71", features = ["vendored"] }
19-
regex = "1.11.1"
20-
reqwest = { version = "0.12.12", features = ["blocking", "json"] }
21-
serde = { version = "1.0.218", features = ["derive"] }
22-
serde_json = "1.0.139"
23-
14+
clap = "4.5"
15+
itertools = "0.14"
16+
openssl = { version = "0.10", features = ["vendored"] }
17+
regex = "1.11"
18+
reqwest = { version = "0.12", features = ["blocking", "json"] }
19+
serde = { version = "1.0", features = ["derive"] }
20+
serde_json = "1.0"
2421
# logging
25-
log = "0.4.26"
26-
pretty_env_logger = "0.5.0"
22+
log = "0.4"
23+
pretty_env_logger = "0.5"
2724

2825
[profile.release]
2926
opt-level = "z" # Optimize for size

0 commit comments

Comments
 (0)