-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
37 lines (32 loc) · 969 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
35
36
37
[package]
name = "roundme"
version = "0.1.0"
edition = "2021"
build = "build.rs"
authors = ["Trail of Bits <[email protected]>"]
description = "Rounding analyzer"
readme = "README.md"
repository = "https://github.com/crytic/roundme"
license = "AGPL-3.0"
keywords = ["security", "blockchain", "arithmetics"]
categories = ["command-line-utilities"]
exclude = [
"examples/*",
]
[dependencies]
lalrpop-util = { version = "0.20.0", features = ["lexer", "unicode"] }
serde = { version = "1.0", features = ["derive"] }
clap = { version = "4.0", features = ["derive"] }
serde_yaml = "0.8"
anyhow = "1.0"
latex = "0.3.1"
[build-dependencies]
lalrpop = "0.20.0"
[dev-dependencies]
tempfile = "3.3.0" # for tests
cargo-audit = "0.18.3"
[workspace.metadata.dylint]
libraries = [
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/general/*" },
{ git = "https://github.com/trailofbits/dylint", pattern = "examples/supplementary/*" },
]