-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
49 lines (43 loc) · 1.2 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "xrust"
version = "1.2.0"
keywords = ["xml", "json", "xpath", "xslt", "tree"]
categories = ["parser-implementations"]
description = "Support for XPath and XSLT"
authors = ["Steve Ball <[email protected]>", "Daniel Murphy <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/ballsteve/xrust"
documentation = "https://docs.rs/xrust/"
readme = "README.md"
edition = "2021"
[features]
# The xslt feature enables XSLT support
default = ["xslt"]
xslt = []
[[bench]]
name = "bench_smite"
harness = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rust_decimal = "1.36.0"
rust_decimal_macros = "1.36.0"
lexers = "0.1.4"
unicode-segmentation = "1.12.0"
chrono = "0.4.38"
url = "2.5.2"
pkg-version = "1.0.0"
# This is for the forest tree implementation
#generational-arena = "0.2"
regex = "1.11.0"
# For formatting numbers
formato = "0.2.0"
# For formatting integers
english-numbers = "0.3.3"
italian_numbers = "0.1.0"
hexdump = "0.1.2"
[dev-dependencies]
criterion = "0.5.1"
encoding_rs = "0.8.34"
encoding_rs_io = "0.1.7"
earleybird = {git = "https://github.com/mdubinko/earleybird.git"}
indextree = "4.6.1"