Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit a0ccfa8

Browse files
committed
Adjust Cargo.toml files before publishing to crates.io
* Specify versions of playready crates. * Reword descriptions.
1 parent aa24f50 commit a0ccfa8

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

crates/playready-cli/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "playready-cli"
3+
description = "Implementation of PlayReady DRM system based on pyplayready (CLI)"
34
version.workspace = true
45
edition.workspace = true
56
authors.workspace = true
@@ -8,9 +9,10 @@ repository.workspace = true
89
license.workspace = true
910
keywords.workspace = true
1011
categories.workspace = true
12+
readme.workspace = true
1113

1214
[dependencies]
13-
playready = { path = "../playready" }
15+
playready = { path = "../playready", version = "0.1" }
1416
colog = "1.3"
1517
clap = { version = "4.5", features = ["derive"] }
1618
isahc = "1.7"

crates/playready-ffi/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[package]
22
name = "playready-ffi"
3+
description = "Implementation of PlayReady DRM system based on pyplayready (C bindings)"
34
version.workspace = true
45
edition.workspace = true
56
authors.workspace = true
@@ -13,5 +14,5 @@ categories.workspace = true
1314
crate-type = ["staticlib", "lib"]
1415

1516
[dependencies]
16-
playready = { path = "../playready" }
17+
playready = { path = "../playready", version = "0.1" }
1718
safer-ffi = { version = "0.1", features = ["headers"] }

crates/playready-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "playready-macros"
3+
description = "Implementation of PlayReady DRM system based on pyplayready (helper macros)"
34
version.workspace = true
45
edition.workspace = true
56
authors.workspace = true
6-
description.workspace = true
77
homepage.workspace = true
88
repository.workspace = true
99
license.workspace = true

crates/playready/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ repository.workspace = true
99
license.workspace = true
1010
keywords.workspace = true
1111
categories.workspace = true
12+
readme.workspace = true
1213

1314
[dependencies]
14-
playready-macros = { path = "../playready-macros" }
15+
playready-macros = { path = "../playready-macros", version = "0.1" }
1516
aes = "0.8"
1617
base64 = "0.22"
1718
binrw = "0.14"

0 commit comments

Comments
 (0)