generated from link-foundation/rust-ai-driven-development-pipeline-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (40 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
48 lines (40 loc) · 1.26 KB
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
[package]
name = "network-isomorphism-solver"
version = "0.2.0"
edition = "2021"
description = "Network isomorphism solver using Links Theory - determines if two networks are structurally identical"
readme = "README.md"
license = "Unlicense"
keywords = ["isomorphism", "links-theory", "graph", "network", "algorithm"]
categories = ["algorithms", "science", "data-structures"]
repository = "https://github.com/link-foundation/network-isomorphism-solver"
documentation = "https://github.com/link-foundation/network-isomorphism-solver"
rust-version = "1.70"
[lib]
name = "network_isomorphism_solver"
path = "src/lib.rs"
[[bin]]
name = "network-isomorphism-solver"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "time"] }
links-notation = "0.13.0"
[dev-dependencies]
tokio-test = "0.4"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
# Allow some common patterns
module_name_repetitions = "allow"
too_many_lines = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
too_many_arguments = "allow"
missing_const_for_fn = "allow"
[profile.release]
lto = true
codegen-units = 1
strip = true