Skip to content

Commit 13e2a0f

Browse files
authored
Merge pull request #25 from Iizuki/serialize-binary
Serialize binary attributes
2 parents 6ed7688 + 35bbf74 commit 13e2a0f

File tree

5 files changed

+244
-54
lines changed

5 files changed

+244
-54
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- '*'
7-
- '!main'
87

98
jobs:
109
build:
@@ -15,7 +14,7 @@ jobs:
1514
image: openidentityplatform/opendj
1615
ports:
1716
- 1389:1389
18-
options: >
17+
options: >
1918
--env ROOT_USER_DN="cn=manager"
2019
2120

.github/workflows/publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@ name: Publish to crates.io
22

33
on:
44
push:
5-
branches:
6-
- 'main'
5+
tags:
6+
# Only on SemVer tags like "7.3.0".
7+
# Push a new tag to make a new release.
8+
# It should match the version in Cargo.toml
9+
# (Perhaps we could add a check for this?)
10+
- '[0-9]+.[0-9]+.[0-9]+'
711

812
jobs:
913
build:

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
repository = "https://github.com/keaz/simple-ldap"
77
keywords = ["ldap", "ldap3", "async", "high-level"]
88
name = "simple-ldap"
9-
version = "5.0.0"
9+
version = "5.1.0"
1010
edition = "2021"
1111

1212

@@ -24,14 +24,14 @@ tracing = "0.1.41"
2424
url = "2.5.4"
2525

2626
[dev-dependencies]
27-
# This little hack is neede0.9.0 enabling optional features during testing.
27+
# This little hack is needed for enabling optional features during testing.
2828
# https://github.com/rust-lang/cargo/issues/2911#issuecomment-749580481
2929
simple-ldap = { path = ".", features = ["pool"] }
3030
anyhow = "1.0.95"
3131
rand = "0.9.0"
3232
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
3333
# v4 is random uids.
34-
uuid = { version = "1.12.1", features = ["v4"] }
34+
uuid = { version = "1.12.1", features = ["v4", "serde"] }
3535

3636
[features]
3737
default = ["tls-native"]

0 commit comments

Comments
 (0)