Skip to content

Commit cc88b75

Browse files
davidtwcoDavid Wood
authored andcommitted
update packages before publishing
We're ready to publish! Update the `Cargo.toml` files of both packages with all the required information before publishing. Signed-off-by: David Wood <[email protected]>
1 parent 8556a51 commit cc88b75

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

thorin-bin/Cargo.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
[package]
2-
name = "thorin-bin"
2+
name = "thorin-dwp-bin"
33
authors = [ "David Wood <[email protected]>" ]
4-
description = "Merge dwarf objects into dwarf packages"
5-
license = "Apache-2.0/MIT"
4+
categories = ["development-tools::debugging", "command-line-utilities"]
5+
description = "Merge DWARF objects and packages into DWARF packages"
6+
homepage = "https://github.com/davidtwco/thorin"
7+
keywords = ["dwarf", "split-dwarf", "dwarf-package", "dwarf-object", "dwp"]
8+
license = "MIT OR Apache-2.0"
69
readme = "../README.md"
10+
repository = "https://github.com/davidtwco/thorin"
711
version = "0.1.0"
812
edition = "2021"
913

1014
[dependencies]
11-
thorin = { path = "../thorin" }
15+
thorin-dwp = { version = "0.1.0", path = "../thorin" }
1216

1317
anyhow = "1.0.51"
1418
memmap2 = "0.5.0"

thorin/Cargo.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
[package]
2-
name = "thorin"
2+
name = "thorin-dwp"
33
authors = [ "David Wood <[email protected]>" ]
4-
description = "Merge dwarf objects into dwarf packages"
5-
license = "Apache-2.0/MIT"
4+
categories = ["development-tools::debugging"]
5+
description = "Library for building DWARF packages from input DWARF objects and packages"
6+
homepage = "https://docs.rs/thorin-dwp"
7+
keywords = ["dwarf", "split-dwarf", "dwarf-package", "dwarf-object", "dwp"]
8+
license = "MIT OR Apache-2.0"
69
readme = "../README.md"
10+
repository = "https://github.com/davidtwco/thorin"
711
version = "0.1.0"
812
edition = "2021"
913

@@ -22,3 +26,7 @@ features = [ "read", "write", "std" ]
2226
version = "0.27.1"
2327
default-features = false
2428
features = [ "archive", "read", "write", "compression" ]
29+
30+
[lib]
31+
name = "thorin"
32+
bench = false

0 commit comments

Comments
 (0)