diff --git a/Cargo.toml b/Cargo.toml index 191768bca1d693e05ebc3b780cc73a910e76c862..ac25ff0e9d0b19a0282da0d03d81fcb9c221095c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,6 @@ [workspace] resolver = "2" members = [ - # web "ylong_http", "ylong_http_client", ] diff --git a/ylong_http/Cargo.toml b/ylong_http/Cargo.toml index 4b69f981795c8a975363bb53c075b13eeb466519..9a77072b64d6418eb32dcccbbee9a57e8f09b8cb 100644 --- a/ylong_http/Cargo.toml +++ b/ylong_http/Cargo.toml @@ -4,11 +4,9 @@ version = "1.0.0" edition = "2021" description = "HTTP utility implementation" license = "Apache-2.0" -repository = "https://gitee.com/openharmony-sig/commonlibrary_rust_ylong_http" +repository = "https://gitee.com/openharmony/commonlibrary_rust_ylong_http" keywords = ["ylong", "http"] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [features] default = [] full = [ @@ -27,7 +25,7 @@ ylong_base = ["ylong_runtime"] # Uses asynchronous components of `ylo [dependencies] tokio = { version = "1.20.1", features = ["io-util"], optional = true } -ylong_runtime = { git = "https://gitee.com/openharmony-sig/commonlibrary_rust_ylong_runtime.git", optional = true } +ylong_runtime = { git = "https://gitee.com/openharmony/commonlibrary_rust_ylong_runtime.git", optional = true } [dev-dependencies] tokio = { version = "1.20.1", features = ["io-util", "rt-multi-thread", "macros"] } diff --git a/ylong_http_client/Cargo.toml b/ylong_http_client/Cargo.toml index 9ede293b32bb8e61afaebcfda0d5e45798e4d244..4b71be790044f5a275e5af44422a4990913df530 100644 --- a/ylong_http_client/Cargo.toml +++ b/ylong_http_client/Cargo.toml @@ -4,16 +4,14 @@ version = "1.0.0" edition = "2021" description = "Ylong HTTP Client implementation" license = "Apache-2.0" -repository = "https://gitee.com/openharmony-sig/commonlibrary_rust_ylong_http" +repository = "https://gitee.com/openharmony/commonlibrary_rust_ylong_http" keywords = ["ylong", "http", "client"] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] ylong_http = { path = "../ylong_http", features = ["full"] } libc = { version = "0.2.134", optional = true } tokio = { version = "1.20.1", features = ["io-util", "net", "rt", "rt-multi-thread", "macros", "sync", "time"], optional = true } -ylong_runtime = { git = "https://gitee.com/openharmony-sig/commonlibrary_rust_ylong_runtime.git", features = ["net", "sync", "fs", "macros", "time"], optional = true } +ylong_runtime = { git = "https://gitee.com/openharmony/commonlibrary_rust_ylong_runtime.git", features = ["net", "sync", "fs", "macros", "time"], optional = true } [dev-dependencies] hyper = { version = "0.14.23", features = ["http1", "tcp", "server"] }