Restructure and start working on CLI

This commit is contained in:
Fabian Stamm
2025-05-26 16:43:40 +02:00
parent 883b6da7eb
commit b61518de00
38 changed files with 134 additions and 8 deletions

20
libjrpc/Cargo.toml Normal file
View File

@ -0,0 +1,20 @@
[package]
name = "libjrpc"
version = "0.1.0"
edition = "2021"
[features]
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 }
[dev-dependencies]
env_logger = "0.11.5"
ctor = "*"