Skip to content

Commit a6cef0f

Browse files
authored
chore: explicitely set publish = false for some crates (#424)
dpapi crates are not yet ready.
1 parent 74e74cf commit a6cef0f

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

crates/dpapi-core/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
name = "dpapi-core"
33
version = "0.1.0"
44
edition = "2024"
5+
publish = false # not ready yet
56

67
[features]
78
std = []
89
alloc = []
910

1011
[dependencies]
1112
uuid.workspace = true
12-
ironrdp-core = { version = "0.1", features = ["alloc"] }
13+
ironrdp-core = { version = "0.1", features = ["alloc"] }

crates/dpapi-fuzzing/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "dpapi-fuzzing"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2021"
5+
publish = false
56

67
[dependencies]
78
dpapi-pdu = { workspace = true, features = ["arbitrary"] }

crates/dpapi-native-transport/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "dpapi-native-transport"
33
version = "0.1.0"
44
edition = "2021"
5+
publish = false # not ready yet
56

67
[dependencies]
78
transport = { git = "https://github.com/Devolutions/devolutions-gateway.git", rev = "4fd9c22" }
@@ -11,4 +12,4 @@ url = "2.5"
1112
uuid = { workspace = true, features = ["v4"] }
1213
tracing.workspace = true
1314
dpapi-transport.workspace = true
14-
futures-util = "0.3"
15+
futures-util = "0.3"

crates/dpapi-pdu/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "dpapi-pdu"
33
version = "0.1.0"
44
edition = "2021"
5+
publish = false # not ready yet
56

67
[features]
78
std = []
@@ -19,4 +20,4 @@ thiserror = { version = "2.0", default-features = false }
1920
arbitrary = { version = "1", optional = true, features = ["derive"] }
2021

2122
[dev-dependencies]
22-
paste = "1.0"
23+
paste = "1.0"

crates/dpapi-transport/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ homepage = "https://github.com/devolutions/sspi-rs"
88
repository = "https://github.com/devolutions/sspi-rs"
99
authors = ["Devolutions Inc. <infos@devolutions.net>"]
1010
description = "Common types and traits for implementing DPAPI RPC transport"
11+
publish = false # not ready yet
1112

1213
[dependencies]
1314
url = "2.5"
1415
thiserror = "2.0"
15-
uuid.workspace = true
16+
uuid.workspace = true

crates/dpapi-web/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ license = "MIT/Apache-2.0"
88
homepage = "https://github.com/devolutions/sspi-rs"
99
repository = "https://github.com/devolutions/sspi-rs"
1010
authors = ["Devolutions Inc. <infos@devolutions.net>"]
11+
publish = false
1112

1213
[lib]
1314
doctest = false

0 commit comments

Comments
 (0)