-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 723 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 723 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
25
26
27
28
29
30
## Copyright (C) 2024, Savio Sena <savio.sena@gmail.com>
[package]
name = "leetcode"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
description = "My solutions to various Leetcode puzzles."
homepage = "https://github.com/sav/leetcode"
repository = "git@github.com:sav/leetcode.git"
keywords = ["leetcode", "algorithm", "data-structure", "competitive"]
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
panic = 'unwind'
[lib]
name = "leetcode"
path = "src/lib/leetcode.rs"
[features]
count-allocations = ["allocation-counter"]
[dependencies]
alg = { git = "https://github.com/sav/alg.git", branch = "master" }
allocation-counter = { version = "0", optional = true }
rand = "0.8"