forked from datafusion-contrib/datafusion-functions-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 920 Bytes
/
Cargo.toml
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
[package]
name = "datafusion-functions-json"
version = "0.1.3"
edition = "2021"
description = "JSON functions for DataFusion"
readme = "README.md"
license = "Apache-2.0"
keywords = ["datafusion", "JSON", "SQL"]
categories = ["database-implementations", "parsing"]
repository = "https://github.com/datafusion-contrib/datafusion-functions-json/"
[dependencies]
arrow = ">=51"
arrow-schema = ">=51"
datafusion-common = ">=38"
datafusion-expr = ">=38"
jiter = ">=0.3"
paste = ">=1.0.14"
log = ">=0.4.21"
datafusion-execution = ">=38"
[dev-dependencies]
datafusion = "38.0.0"
tokio = { version = "1.37.0", features = ["full"] }
[lints.clippy]
dbg_macro = "deny"
print_stdout = "deny"
# in general we lint against the pedantic group, but we will whitelist
# certain lints which we don't want to enforce (for now)
pedantic = { level = "deny", priority = -1 }
missing_errors_doc = "allow"
cast_possible_truncation = "allow"