-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (39 loc) · 1.25 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
# Copyright (c) 2019-2020 SRI International.
# All rights reserved.
#
# This file is part of the Parsley parser.
#
# Parsley is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Parsley is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
[package]
name = "parsley-rust"
version = "0.1.0"
authors = ["Prashanth Mundkur <[email protected]>"]
edition = "2018"
[dependencies]
chrono = "0.4.9"
log = "0.4.11"
env_logger = "0.7.1"
log-panics = "2.0.0"
flate2 = { version = "1.0.17", features = ["zlib"], default-features = false }
lzw = "0.10.0"
jpeg-decoder = "0.1"
regex = "1"
ascii85 = "0.2.1"
binascii = "0.1.4"
clap = "2.33.3"
serde = "1.0.119"
serde_json = "1.0.59"
afl = { version = "*", optional = true }
[features]
kuduafl = ["afl"]