File: Cargo.toml

package info (click to toggle)
rust-jaq-std 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 196 kB
  • sloc: makefile: 2
file content (106 lines) | stat: -rw-r--r-- 1,879 bytes parent folder | download
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.65"
name = "jaq-std"
version = "2.1.2"
authors = ["Michael Färber <michael.faerber@gedenkt.at>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standard library for jaq"
readme = "README.md"
keywords = [
    "json",
    "query",
    "jq",
]
license = "MIT"
repository = "https://github.com/01mf02/jaq"

[features]
default = [
    "std",
    "format",
    "log",
    "math",
    "regex",
    "time",
]
format = [
    "aho-corasick",
    "base64",
    "urlencoding",
]
math = ["libm"]
regex = ["regex-lite"]
std = []
time = ["chrono"]

[lib]
name = "jaq_std"
path = "src/lib.rs"

[[test]]
name = "defs"
path = "tests/defs.rs"

[[test]]
name = "funs"
path = "tests/funs.rs"

[dependencies.aho-corasick]
version = "1.0"
optional = true

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.chrono]
version = "0.4.38"
features = [
    "alloc",
    "clock",
]
optional = true
default-features = false

[dependencies.hifijson]
version = "0.2.0"
optional = true

[dependencies.jaq-core]
version = "2.1.0"

[dependencies.libm]
version = "0.2.7"
optional = true

[dependencies.log]
version = "0.4.17"
optional = true

[dependencies.regex-lite]
version = "0.1"
optional = true

[dependencies.urlencoding]
version = "2.1.3"
optional = true

[dev-dependencies.serde_json]
version = "1.0"