-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (48 loc) · 1.01 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
50
51
52
53
54
55
56
57
58
[package]
name = "kson"
version = "0.1.0"
authors = ["Jack Gallagher <[email protected]>", "Baeo Maltinsky <[email protected]>"]
edition = "2018"
[features]
default = []
python = ["pyo3"]
lua = ["rlua"]
[dependencies]
half = "1.3"
num-traits = "0.2"
num-bigint = "0.2"
bytes = "0.4"
failure = "0.1"
smallvec = {version = "0.6", features = ["union"]}
womp = {git = "https://github.com/kalix-systems/womp.git"}
kson_macro = {path = "./kson_macro"}
kson_derive = {path = "./kson_derive"}
pyo3 = {version = "0.7.0-alpha.1", optional = true}
rlua = {version = "0.16", optional = true}
[dev-dependencies]
proptest = "0.9"
serde = "1.0"
serde_json = "1.0"
criterion = "0.2"
filebuffer = "0.4"
kson_strategy = {path = "./kson_strategy"}
[profile.dev]
lto = false
[[bench]]
name="encoder"
harness=false
# [[bench]]
# name="strings"
# harness=false
# [[bench]]
# name="encoder_profile"
# harness=false
#
# [[bench]]
# name="decoder_profile"
# harness=false
[[bench]]
name="comparisons"
harness=false
[profile.release]
debug = true