17 lines
312 B
TOML
17 lines
312 B
TOML
[package]
|
|
name = "libjrpc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["http"]
|
|
http = ["dep:reqwest", "dep:url"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
regex = "1"
|
|
reqwest = { version = "0.12", optional = true, features = ["blocking"] }
|
|
url = { version = "2", optional = true }
|