Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
9bfec5e
wip
Itsusinn Aug 30, 2025
da9033e
wip
Itsusinn Aug 30, 2025
1d67600
wip
Itsusinn Aug 31, 2025
0a1dfba
wip: socks inbound
Itsusinn Sep 4, 2025
facb18a
use tab
Itsusinn Sep 4, 2025
0e7e4d6
wip
Itsusinn Sep 4, 2025
cd379f9
wip
Itsusinn Sep 5, 2025
913f380
minimal working code
Itsusinn Sep 5, 2025
25f55f4
clap parse
Itsusinn Sep 7, 2025
fee1e16
conf
Itsusinn Sep 7, 2025
b690e94
wip
Itsusinn Sep 7, 2025
c3a9d6f
wip
Itsusinn Sep 7, 2025
0be69f5
wip
Itsusinn Sep 8, 2025
cecff65
wip
Itsusinn Sep 8, 2025
3eb740c
wip
Itsusinn Sep 8, 2025
16614d5
wip
Itsusinn Oct 2, 2025
7a9acfa
wip: quinn-like udp socket
Itsusinn Oct 3, 2025
92eedfe
wip
Itsusinn Oct 4, 2025
4295408
wip
Itsusinn Oct 6, 2025
d393566
wip
Itsusinn Oct 7, 2025
1c9d74d
wip
Itsusinn Oct 8, 2025
316a636
wip
Itsusinn Oct 9, 2025
9728bf3
wip
Itsusinn Oct 9, 2025
2ae0bb5
wip
Itsusinn Oct 9, 2025
ff13a08
wip
Itsusinn Oct 10, 2025
07caf80
wip
Itsusinn Oct 14, 2025
38e9bc0
wip
Itsusinn Oct 14, 2025
f48deba
wip
Itsusinn Oct 14, 2025
509a803
wip
Itsusinn Oct 14, 2025
094faeb
wip
Itsusinn Oct 14, 2025
d54b73e
update
Itsusinn Oct 21, 2025
6c5ec22
wip
Itsusinn Oct 21, 2025
09a3304
wip
Itsusinn Oct 21, 2025
a408e18
wip
Itsusinn Oct 21, 2025
65f842e
wip
Itsusinn Oct 21, 2025
a9cf25c
cargo clippy
Itsusinn Oct 22, 2025
7bf4460
wip
Itsusinn Oct 22, 2025
44457ce
wip
Itsusinn Oct 22, 2025
ea65a7b
wip test
Itsusinn Oct 22, 2025
8cbdb93
wip
Itsusinn Oct 22, 2025
e13b392
wip
Itsusinn Oct 22, 2025
17f97d5
wip
Itsusinn Nov 3, 2025
d41585b
wip
Itsusinn Nov 6, 2025
bc4d5cc
wip
Itsusinn Nov 6, 2025
66c3b35
style: reduce usage of snafu
Itsusinn Nov 20, 2025
6c7ccba
wip
Itsusinn Nov 24, 2025
7235070
Bump the rust-dependencies group across 1 directory with 22 updates
dependabot[bot] Feb 1, 2026
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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
RUSTC_BOOTSTRAP=1
97 changes: 97 additions & 0 deletions .github/cliff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
# git-cliff ~ default configuration file
# https://git-cliff.org/docs/configuration

[changelog]
# template for the changelog header
header = """
# Changelog\n
All notable changes to this project will be documented in this file.\n
"""
# template for the changelog body
# https://keats.github.io/tera/docs/#introduction
body = """
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | striptags | trim | upper_first }}
{% for commit in commits %}
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
{% if commit.breaking %}[**breaking**] {% endif %}\
{{ commit.message | upper_first }}\
{% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif -%}\
{% endfor %}
{% endfor %}\n


{% if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
## New Contributors ❤️
{% endif %}\
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
* @{{ contributor.username }} made their first contribution
{%- if contributor.pr_number %} in \
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
{%- endif %}
{%- endfor -%}

{% if version %}
{% if previous.version %}
**Full Changelog**: {{ self::remote_url() }}/compare/{{ previous.version }}...{{ version }}
{% endif %}
{% else -%}
{% raw %}\n{% endraw %}
{% endif %}

{%- macro remote_url() -%}
https://github.com/{{ remote.github.owner }}/{{ remote.github.repo }}
{%- endmacro -%}

"""
# template for the changelog footer
footer = """
<!-- generated by git-cliff -->
"""
# remove the leading and trailing s
trim = true
# postprocessors
postprocessors = [
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
]

[git]
# parse the commits based on https://www.conventionalcommits.org
conventional_commits = true
# filter out the commits that are not conventional
filter_unconventional = false
# process each line of a commit as an individual commit
split_commits = false
# regex for preprocessing the commit messages
commit_preprocessors = [
# Replace issue numbers
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
# Check spelling of the commit with https://github.com/crate-ci/typos
# If the spelling is incorrect, it will be automatically fixed.
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
]
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
{ message = "^style\\(fmt\\)", skip = true },
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
{ message = "^test", group = "<!-- 6 -->🧪 Testing" },
{ message = "^build", group = "<!-- 7 -->🛠️ Builds" },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore\\(deps.*\\)", skip = true },
{ message = "^chore\\(pr\\)", skip = true },
{ message = "^chore\\(pull\\)", skip = true },
{ message = "^chore|^ci", group = "<!-- 8 -->⚙️ Miscellaneous Tasks" },
{ body = ".*security", group = "<!-- 9 -->🛡️ Security" },
{ message = "^revert", group = "<!-- 10 -->◀️ Revert" },
]
# filter out the commits that are not matched by commit parsers
filter_commits = false
# sort the tags topologically
topo_order = false
# sort the commits inside sections by oldest/newest order
sort_commits = "oldest"
18 changes: 18 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: monthly
groups:
rust-dependencies:
patterns:
- "*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: monthly
groups:
actions-dependencies:
patterns:
- "*"
18 changes: 1 addition & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Added by cargo

/target
config.toml
Loading