File: control

package info (click to toggle)
valijson 1.0%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,716 kB
  • sloc: cpp: 19,366; sh: 134; makefile: 24
file content (39 lines) | stat: -rw-r--r-- 1,362 bytes parent folder | download | duplicates (2)
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
38
39
Source: valijson
Section: libdevel
Priority: optional
Maintainer: Dima Kogan <dkogan@debian.org>
Build-Depends: cmake,
               debhelper-compat (= 13),
               libjsoncpp-dev,
               nlohmann-json3-dev,
               picojson-dev,
               libyaml-cpp-dev,
               libpoco-dev,
               qtbase5-dev,
               rapidjson-dev,
               libgtest-dev,
               json-schema-test-suite
Standards-Version: 4.6.0
Homepage: https://github.com/tristanpenman/valijson
Vcs-Git: https://salsa.debian.org/debian/valijson.git
Vcs-Browser: https://salsa.debian.org/debian/valijson

Package: libvalijson-dev
Architecture: all
Depends: ${misc:Depends}, ${shlibs:Depends},
         libjsoncpp-dev,
         nlohmann-json3-dev,
         picojson-dev,
         libyaml-cpp-dev,
         libpoco-dev,
         qtbase5-dev,
         rapidjson-dev
Description: Header-only C++ library for JSON Schema validation
 Valijson is a header-only JSON Schema validation library for C++11.
 .
 Valijson provides a simple validation API that allows you to load JSON Schemas,
 and validate documents loaded by one of several supported parser libraries.
 .
 The goal of this project is to support validation of all constraints available
 in JSON Schema v7, while being competitive with the performance of a
 hand-written schema validator.