-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
40 lines (35 loc) · 1.19 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
[package]
name = "warc_parser"
version = "2.0.0"
authors = ["Stephen Becker IV <github@deathbyescalator.com>"]
description = "Web ARChive parsing library using nom lib"
documentation = "http://sbeckeriv.github.io/warc_nom_parser/warc_parser/index.html"
homepage = "http://sbeckeriv.github.io/warc_nom_parser/warc_parser/index.html"
repository = "https://github.com/sbeckeriv/warc_nom_parser"
readme = "./README.md"
keywords = ["web", "archive", "parsing", "warc"]
license = "MIT"
[dependencies]
nom = "4.2.3"
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[profile.test]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1
[profile.dev]
opt-level = 0 # Controls the --opt-level the compiler builds with
debug = true # Controls whether the compiler passes `-g`
rpath = false # Controls whether the compiler passes `-C rpath`
lto = false # Controls `-C lto` for binaries and staticlibs
debug-assertions = true # Controls whether debug assertions are enabled
codegen-units = 1 # Controls whether the compiler passes `-C codegen-units`
# `codegen-units` is ignored when `lto = true`