diff --git a/Cargo.toml b/Cargo.toml index 7bd74d4..d9299b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" [workspace.package] edition = "2021" keywords = ["adb", "android", "tcp", "usb"] -license = "MIT" +license-file = "LICENSE" repository = "https://github.com/cocool97/adb_client" version = "2.0.1" @@ -19,3 +19,14 @@ debug-assertions = false lto = "thin" opt-level = 'z' strip = true + +[workspace.metadata.deb] +extended-description = """\ +Interact with ADB server with or without using ADB server. +""" +depends = "$auto" +section = "utility" +priority = "optional" +assets = [ + { source = "target/release/adb_cli", dest = "usr/bin/", mode = "755"}, +] \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8aa2645 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/adb_cli/Cargo.toml b/adb_cli/Cargo.toml index f7521fb..ff46106 100644 --- a/adb_cli/Cargo.toml +++ b/adb_cli/Cargo.toml @@ -2,7 +2,7 @@ description = "Rust ADB (Android Debug Bridge) CLI" edition.workspace = true keywords.workspace = true -license.workspace = true +license-file.workspace = true name = "adb_cli" readme = "README.md" repository.workspace = true diff --git a/adb_client/Cargo.toml b/adb_client/Cargo.toml index a7155cc..0df991a 100644 --- a/adb_client/Cargo.toml +++ b/adb_client/Cargo.toml @@ -2,7 +2,7 @@ description = "Rust ADB (Android Debug Bridge) client library" edition.workspace = true keywords.workspace = true -license.workspace = true +license-file.workspace = true name = "adb_client" readme = "README.md" repository.workspace = true