Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions bindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ For example, while the `opendal` crate might be at version `0.55.0`, a binding
might be at version `0.47.0` or `0.49.2`. For updates and compatibility, use
the specific binding version instead of the `opendal` crate version.

## Design Proposals

* [Dynamic service and layer extensions](docs/dynamic-extensions/README.md)
explores independently installable packages for the Python, Ruby, and
Node.js bindings. The proposal is not implemented yet.

## Getting Started

Every binding should provide a `README.md` file to help users get started.
Expand Down
363 changes: 363 additions & 0 deletions bindings/docs/dynamic-extensions/README.md

Large diffs are not rendered by default.

348 changes: 348 additions & 0 deletions bindings/docs/dynamic-extensions/alternatives.md

Large diffs are not rendered by default.

612 changes: 612 additions & 0 deletions bindings/docs/dynamic-extensions/compatibility.md

Large diffs are not rendered by default.

369 changes: 369 additions & 0 deletions bindings/docs/dynamic-extensions/nodejs.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to you under the Apache License, Version 2.0.

[target.'cfg(target_os = "linux")']
rustflags = ["-C", "link-arg=-Wl,--exclude-libs,ALL"]
6 changes: 6 additions & 0 deletions bindings/docs/dynamic-extensions/prototype/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to you under the Apache License, Version 2.0.

/target/
Loading
Loading