Add C# implementation

This commit is contained in:
Fabian Stamm
2025-07-31 23:24:31 +02:00
parent 369ccbe84e
commit b069237b91
6 changed files with 418 additions and 9 deletions

View File

@ -8,9 +8,9 @@ default = ["http"]
http = ["dep:reqwest", "dep:url"]
[dependencies]
anyhow = "1.0.89"
lazy_static = "1.5.0"
log = "0.4.22"
regex = "1.10.6"
reqwest = { version = "0.12.7", optional = true, features = ["blocking"] }
url = { version = "2.5.2", optional = true }
anyhow = "1"
lazy_static = "1"
log = "0.4"
regex = "1"
reqwest = { version = "0.12", optional = true, features = ["blocking"] }
url = { version = "2", optional = true }