[package]
edition = "2021"
rust-version = "1.75"
name = "rinova-proxy-sdk"
version = "1.0.0"
authors = ["Rina"]
build = false
exclude = ["/tests"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proxy subscription to Clash config converter — SDK"
homepage = "https://github.com/jove-rina/rinova-proxy-rust"
documentation = "https://docs.rs/rinova-proxy-sdk"
readme = "README.md"
keywords = [
"proxy",
"subscription",
"clash",
"shadowsocks",
"vmess",
]
categories = [
"network-programming",
"web-programming::http-client",
]
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/jove-rina/rinova-proxy-rust"
[lib]
name = "rinova_proxy_sdk"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"signal",
"time",
]
[dependencies.url]
version = "2"
[dependencies.urlencoding]
version = "2"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
]