Rename distant-core-plugin to distant-plugin

This commit is contained in:
Chip Senkbeil 2023-10-29 11:49:13 -05:00
parent c88f96baba
commit bf07871187
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131
14 changed files with 15 additions and 15 deletions

22
Cargo.lock generated
View File

@ -826,8 +826,8 @@ dependencies = [
"bytes",
"derive_more",
"distant-core-net",
"distant-core-plugin",
"distant-core-protocol",
"distant-plugin",
"env_logger",
"futures",
"hex",
@ -889,16 +889,6 @@ dependencies = [
"tokio",
]
[[package]]
name = "distant-core-plugin"
version = "0.21.0"
dependencies = [
"async-trait",
"distant-core-auth",
"distant-core-protocol",
"serde",
]
[[package]]
name = "distant-core-protocol"
version = "0.21.0"
@ -916,6 +906,16 @@ dependencies = [
"strum",
]
[[package]]
name = "distant-plugin"
version = "0.21.0"
dependencies = [
"async-trait",
"distant-core-auth",
"distant-core-protocol",
"serde",
]
[[package]]
name = "distant-plugin-local"
version = "0.21.0"

View File

@ -16,8 +16,8 @@ members = [
"distant-core",
"distant-core-auth",
"distant-core-net",
"distant-core-plugin",
"distant-core-protocol",
"distant-plugin",
"distant-plugin-local",
"distant-plugin-ssh",
]

View File

@ -17,7 +17,7 @@ bitflags = "2.3.1"
bytes = "1.4.0"
derive_more = { version = "0.99.17", default-features = false, features = ["as_mut", "as_ref", "deref", "deref_mut", "display", "from", "error", "into", "into_iterator", "is_variant", "try_into"] }
distant-core-net = { version = "=0.21.0", path = "../distant-core-net" }
distant-core-plugin = { version = "=0.21.0", path = "../distant-core-plugin" }
distant-plugin = { version = "=0.21.0", path = "../distant-plugin" }
distant-core-protocol = { version = "=0.21.0", path = "../distant-core-protocol" }
futures = "0.3.28"
hex = "0.4.3"

View File

@ -1,6 +1,6 @@
[package]
name = "distant-core-plugin"
description = "Core plugin library for distant that provides everything needed to build a plugin"
name = "distant-plugin"
description = "Plugin library for distant that provides everything needed to build a plugin"
categories = []
keywords = []
version = "0.21.0"