1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// SPDX-FileCopyrightText: 2023 Robin Vobruba <hoijui.quaero@gmail.com>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
pub use ToJsonLd;
pub use Obj as Assertion;
pub use Obj as BadgeClass;
pub use Obj as CryptographicKey;
pub use Obj as Evidence;
pub use Obj as Identity;
pub use ObjType as IdentityType;
pub use Obj as Issuer;
pub use Obj as Verification;
pub use ObjType as VerificationType;
use git_version;
pub const VERSION: &str = git_version!;
/// This is an [officially endorsed](
/// https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html#include-items-only-when-collecting-doctests)
/// hack to include rust code embedded in README.md when doc-testing.
;