Skip to content

Commit

Permalink
fix: unique manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed May 20, 2024
1 parent 969f7cd commit d066c79
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 17 deletions.
12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
[workspace]
members = ["suppaftp", "suppaftp-cli"]
resolver = "2"

[workspace.package]
version = "5.4.0"
edition = "2021"
authors = [
"Christian Visintin <christian.visintin@veeso.dev>",
"Matt McCoy <mattnenterprise@yahoo.com>",
]
repository = "https://github.com/veeso/suppaftp"
license = "MIT OR Apache-2.0"
keywords = ["ftp", "ftps", "network-protocol", "async", "ftp-client"]
categories = ["asynchronous", "network-programming"]
14 changes: 7 additions & 7 deletions suppaftp-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
authors = ["Christian Visintin <christian.visintin@veeso.dev>"]
categories = ["command-line-utilities"]
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
repository = { workspace = true }
description = "FTP command line client, based on suppaftp"
edition = "2021"
homepage = "https://github.com/veeso/suppaftp"
include = ["src/**/*", "../LICENSE", "../README.md", "../CHANGELOG.md"]
keywords = ["ftp", "ftp-client", "suppaftp"]
license = "MIT"
name = "suppaftp-cli"
readme = "../README.md"
repository = "https://github.com/veeso/suppaftp"
version = "5.4.0"

[[bin]]
name = "suppaftp"
Expand Down
18 changes: 8 additions & 10 deletions suppaftp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "suppaftp"
version = "5.4.0"
authors = [
"Christian Visintin <christian.visintin@veeso.dev>",
"Matt McCoy <mattnenterprise@yahoo.com>",
]
edition = "2021"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
repository = { workspace = true }
documentation = "https://docs.rs/suppaftp/"
repository = "https://github.com/veeso/suppaftp"
description = "A super FTP/FTPS client library for Rust"
include = [
"src/**/*",
Expand All @@ -17,9 +17,7 @@ include = [
"../CHANGELOG.md",
]
readme = "../README.md"
license = "Apache-2.0"
keywords = ["ftp", "ftps", "network-protocol", "async"]
categories = ["asynchronous", "network-programming"]


[lib]
name = "suppaftp"
Expand Down

0 comments on commit d066c79

Please sign in to comment.