fix: repo url

This commit is contained in:
davidontop 2024-06-15 11:34:07 +02:00
parent 1f6c405469
commit ae519cbc14
Signed by: DavidOnTop
GPG key ID: 5D05538A45D5149F
7 changed files with 83 additions and 8 deletions

3
.gitignore vendored Executable file → Normal file
View file

@ -1,4 +1 @@
/target /target
/Cargo.lock
macros/target
macros/Cargo.lock

80
Cargo.lock generated Normal file
View file

@ -0,0 +1,80 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "binf"
version = "1.1.2"
dependencies = [
"binf_macros",
]
[[package]]
name = "binf_macros"
version = "1.1.1"
dependencies = [
"proc-macro2",
"proc-macro2-diagnostics",
"quote",
"syn",
]
[[package]]
name = "proc-macro2"
version = "1.0.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b1106fec09662ec6dd98ccac0f81cef56984d0b49f75c92d8cbad76e20c005c"
dependencies = [
"unicode-ident",
]
[[package]]
name = "proc-macro2-diagnostics"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
dependencies = [
"proc-macro2",
"quote",
"syn",
"version_check",
"yansi",
]
[[package]]
name = "quote"
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
dependencies = [
"proc-macro2",
]
[[package]]
name = "syn"
version = "2.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "yansi"
version = "1.0.0-rc.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1367295b8f788d371ce2dbc842c7b709c73ee1364d30351dd300ec2203b12377"

6
Cargo.toml Executable file → Normal file
View file

@ -6,13 +6,11 @@ license = "MIT"
description = "A crate that adds utilities for dealing with binary flags" description = "A crate that adds utilities for dealing with binary flags"
authors = ["DavidOnTop <me@davidon.top>"] authors = ["DavidOnTop <me@davidon.top>"]
readme = "README.md" readme = "README.md"
repository = "https://git.davidon.top/binf.git" repository = "https://git.davidon.top/public/binf.git"
documentation = "https://docs.rs/binf" documentation = "https://docs.rs/binf"
[workspace] [workspace]
members = [ members = ["macros"]
"macros"
]
[dependencies] [dependencies]
binf_macros = { version = "1.1.1", path = "macros" } binf_macros = { version = "1.1.1", path = "macros" }

0
LICENSE Executable file → Normal file
View file

0
README.md Executable file → Normal file
View file

View file

@ -6,7 +6,7 @@ license = "MIT"
description = "A crate that adds utilities for dealing with binary flags" description = "A crate that adds utilities for dealing with binary flags"
authors = ["DavidOnTop <me@davidon.top>"] authors = ["DavidOnTop <me@davidon.top>"]
readme = "../README.md" readme = "../README.md"
repository = "https://git.srht.davidon.top/~davidontop/binf" repository = "https://git.davidon.top/public/binf.git"
documentation = "https://docs.rs/binf_macros/" documentation = "https://docs.rs/binf_macros/"
[lib] [lib]

0
src/lib.rs Executable file → Normal file
View file