Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update metadata #1666

Merged
merged 3 commits into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
39 changes: 28 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,27 @@
# under the License.

[package]
authors = ["Apache Software Foundation <dev@opendal.apache.org>"]
categories = ["filesystem"]
description = "OpenDAL: Access data freely, painlessly, and efficiently."
edition = "2021"
exclude = [".github/", "bindings/", "profiles/", "oli/", "tests/"]
homepage = "https://opendal.apache.org/"
keywords = ["storage", "fs", "s3", "azblob", "gcs"]
license = "Apache-2.0"
name = "opendal"
repository = "https://github.com/apache/incubator-opendal"
version = "0.30.3"
# MSRV of OpenDAL. Please update this field while bump.
rust-version = "1.60"

Xuanwo marked this conversation as resolved.
Show resolved Hide resolved
description = "OpenDAL: Access data freely, painlessly, and efficiently."
categories = ["filesystem"]
keywords = ["storage", "fs", "s3", "azblob", "gcs"]

authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }

exclude = [
Xuanwo marked this conversation as resolved.
Show resolved Hide resolved
".github/",
"binaries/",
"bindings/",
"profiles/",
"tests/",
]

[package.metadata.docs.rs]
all-features = true
Expand All @@ -46,6 +54,15 @@ members = [
"binaries/oli",
]

[workspace.package]
authors = ["OpenDAL Contributors <dev@opendal.apache.org>"]
homepage = "https://opendal.apache.org/"
license = "Apache-2.0"
repository = "https://github.com/apache/incubator-opendal"

edition = "2021"
rust-version = "1.60" # MSRV for this project - please update while bump versions

[features]
default = ["rustls"]

Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,14 @@ More examples could be found at [Documentation](https://opendal.apache.org).

## Contributing

Check out the [CONTRIBUTING.md](./CONTRIBUTING.md) guide for more details on getting started with contributing to this project.
Check out the [CONTRIBUTING](CONTRIBUTING.md) guide for more details on getting started with contributing to this project.

## Getting help

Submit [issues](https://github.com/apache/incubator-opendal/issues/new) for bug report or asking questions in [discussion](https://github.com/apache/incubator-opendal/discussions/new?category=q-a).
Submit [issues](https://github.com/apache/incubator-opendal/issues/new) for bug report or asking questions in the [Discussions forum](https://github.com/apache/incubator-opendal/discussions/new?category=q-a).

Talk to develops at [discord].

#### License
## License

<sup>
Licensed under <a href="./LICENSE">Apache License, Version 2.0</a>.
</sup>
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
20 changes: 12 additions & 8 deletions binaries/oli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,21 @@
# under the License.

[package]
authors = ["Databend Authors <opensource@datafuselabs.com>"]
categories = ["filesystem"]
description = "OpenDAL Command Line Interface"
edition = "2021"
homepage = "https://opendal.apache.org/"
keywords = ["storage", "data", "s3", "fs", "azblob"]
license = "Apache-2.0"
name = "oli"
repository = "https://github.com/apache/incubator-opendal"
version = "0.19.6"

description = "OpenDAL Command Line Interface"
categories = ["filesystem"]
keywords = ["storage", "data", "s3", "fs", "azblob"]

authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

publish = false

[dependencies]
anyhow = "1"
clap = { version = "4", features = ["cargo", "string"] }
Expand Down
9 changes: 8 additions & 1 deletion bindings/c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@
# under the License.

[package]
edition = "2021"
name = "opendal-c"
version = "0.1.0"
Xuanwo marked this conversation as resolved.
Show resolved Hide resolved

authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

publish = false

[lib]
crate-type = ["cdylib"]
name = "opendal"
Expand Down
9 changes: 8 additions & 1 deletion bindings/nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@
# under the License.

[package]
edition = "2021"
name = "opendal-nodejs"
version = "0.30.3"

authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

publish = false

[lib]
crate-type = ["cdylib"]

Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opendal",
"author": "Databend Authors <opensource@datafuselabs.com>",
"author": "OpenDAL Contributors <dev@opendal.apache.org>",
"version": "0.30.3",
"license": "Apache-2.0",
"main": "index.js",
Expand Down
14 changes: 8 additions & 6 deletions bindings/object_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@
# under the License.

[package]
description = "OpenDAL's object_store binding"
edition = "2021"
license = "Apache-2.0"
name = "object_store_opendal"
repository = "https://github.com/apache/incubator-opendal"
version = "0.30.3"
# MSRV of OpenDAL. Please update this field while bump.
rust-version = "1.60"
description = "OpenDAL's object_store binding"

authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }

[dependencies]
async-trait = "0.1"
Expand Down
9 changes: 8 additions & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@
# under the License.

[package]
edition = "2021"
name = "opendal-python"
version = "0.30.3"

authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }

publish = false

[lib]
crate-type = ["cdylib"]
name = "opendal"
Expand Down