This is an automated email from the ASF dual-hosted git repository.
tison pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
from 15e2cc098 chore(integrations/unftp): use unftp-core (#7191)
add 7f04d9220 refactor(hf): use the official `hf` scheme instead of
`huggingface` (#7193)
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci_core.yml | 2 +-
bindings/java/Cargo.toml | 5 +-
bindings/java/src/utility.rs | 4 +-
bindings/nodejs/Cargo.toml | 5 +-
bindings/python/Cargo.toml | 5 +-
bindings/python/python/opendal/operator.pyi | 12 ++--
bindings/python/python/opendal/services.pyi | 2 +-
bindings/python/src/services.rs | 20 +++----
core/Cargo.lock | 14 ++---
core/Cargo.toml | 5 +-
core/fuzz/Cargo.toml | 3 +-
core/services/{huggingface => hf}/Cargo.toml | 4 +-
core/services/{huggingface => hf}/src/backend.rs | 69 +++++++++++----------
core/services/{huggingface => hf}/src/config.rs | 51 +++++++++-------
core/services/{huggingface => hf}/src/core.rs | 76 ++++++++++++------------
core/services/{huggingface => hf}/src/docs.md | 22 +++----
core/services/{huggingface => hf}/src/error.rs | 11 ++--
core/services/hf/src/lib.rs | 60 +++++++++++++++++++
core/services/{huggingface => hf}/src/lister.rs | 16 ++---
core/services/huggingface/src/lib.rs | 33 ----------
core/src/lib.rs | 8 +--
21 files changed, 235 insertions(+), 192 deletions(-)
rename core/services/{huggingface => hf}/Cargo.toml (93%)
rename core/services/{huggingface => hf}/src/backend.rs (84%)
rename core/services/{huggingface => hf}/src/config.rs (82%)
rename core/services/{huggingface => hf}/src/core.rs (92%)
rename core/services/{huggingface => hf}/src/docs.md (55%)
rename core/services/{huggingface => hf}/src/error.rs (88%)
create mode 100644 core/services/hf/src/lib.rs
rename core/services/{huggingface => hf}/src/lister.rs (94%)
delete mode 100644 core/services/huggingface/src/lib.rs