refactor: Add metadata to crate manifests (#822)

This commit is contained in:
simonsan 2023-08-21 07:38:42 +02:00 committed by GitHub
parent dfd454569c
commit 7338c8d26c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -18,13 +18,13 @@ categories = { workspace = true }
documentation = "https://docs.rs/rustic-rs"
edition = { workspace = true }
homepage = { workspace = true }
include = ["src/**/*", "LICENSE-*", "README.md"]
include = ["src/**/*", "LICENSE-*", "README.md", "config/**/*"]
keywords = { workspace = true }
license = { workspace = true }
readme = "README.md"
repository = { workspace = true }
resolver = "2"
rust-version = "1.65.0"
rust-version = "1.67.1"
description = { workspace = true }
[workspace]

View File

@ -2,16 +2,24 @@
name = "rustic_core"
version = "0.6.0"
authors = ["Alexander Weiss"]
categories = [
"Algorithms",
"Command line utilities",
"Compression",
"Cryptography",
"Data structures",
"Filesystem",
]
edition = { workspace = true }
homepage = { workspace = true }
include = ["src/**/*", "LICENSE-*", "README.md"]
include = ["src/**/*", "LICENSE-*", "README.md", "examples/**/*"]
keywords = ["backup", "restic", "deduplication", "encryption", "library"]
license = { workspace = true }
publish = false # Don't publish until we fix/stabilize public api!!!
readme = "README.md"
resolver = "2"
rust-version = "1.66.1"
description = { workspace = true }
# categories = []
[lib]
path = "src/lib.rs"