-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "ant-algorithm"
version = "1.5.10"
edition = "2024"
description = "A Rust reimplementation of Generic Ant Algorithm"
authors = ["SQD.exe"]
repository = "https://github.com/SQDexe/ant-algorithm"
readme = "README.md"
license = "Unlicense"
[dependencies]
anyhow = "1.0.102"
arrayvec = "0.7.6"
clap = { version = "4.6.1", features = ["derive"] }
derive_more = { version = "2.1.1", default-features = false, features = ["display"] }
fastrand = "2.4.1"
rustc-hash = "2.1.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sqds-tools = { git = "https://github.com/SQDexe/sqds-tools", tag = "v1.3.2" }
[build-dependencies]
winapi = { version = "0.3.9", features = ["winnt"] }
winresource = "0.1.31"