-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
45 lines (35 loc) · 1.04 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
[package]
name = "bump_seed_canonicalization"
version = "0.1.0"
authors = ["Andrew Haberlandt ([email protected])"]
description = "lint for [6-bump-seed-canonicalization](https://github.com/coral-xyz/sealevel-attacks/tree/master/programs/7-bump-seed-canonicalization)"
edition = "2018"
publish = false
[lib]
crate-type = ["cdylib"]
[[example]]
name = "insecure"
path = "ui/insecure/src/lib.rs"
[[example]]
name = "recommended"
path = "ui/recommended/src/lib.rs"
[[example]]
name = "secure"
path = "ui/secure/src/lib.rs"
[[example]]
name = "insecure-2"
path = "ui/insecure-2/src/lib.rs"
[[example]]
name = "insecure-3"
path = "ui/insecure-3/src/lib.rs"
[dependencies]
clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "19e305bb57a7595f2a8d81f521c0dd8bf854e739" }
dylint_linting = "3.4"
if_chain = "1.0"
solana-lints = { path = "../../crate" }
[dev-dependencies]
anchor-lang = "0.30"
dylint_testing = { version = "3.4", features = ["deny_warnings"] }
[workspace]
[package.metadata.rust-analyzer]
rustc_private = true