diff --git a/Cargo.toml b/Cargo.toml index 71aa34a..70b96a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/crates/rustic_core/Cargo.toml b/crates/rustic_core/Cargo.toml index ea26a10..9dd71e1 100644 --- a/crates/rustic_core/Cargo.toml +++ b/crates/rustic_core/Cargo.toml @@ -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"