1
Fork 0
leetcode/Cargo.toml

18 lines
359 B
TOML
Raw Permalink Normal View History

2022-04-06 12:29:45 +00:00
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "leetcode"
2022-09-25 09:27:03 +00:00
description = "Leetcode solutions in Rust."
repository = "https://git.bauke.xyz/Bauke/leetcode"
license="Unlicense"
2022-04-06 12:29:45 +00:00
version = "0.0.0"
2022-09-25 09:27:03 +00:00
authors = ["Bauke <me@bauke.xyz>"]
2022-04-06 12:29:45 +00:00
edition = "2021"
2022-09-25 09:27:03 +00:00
publish = false
2022-04-06 12:29:45 +00:00
[lib]
path = "source/lib.rs"
2022-04-08 20:53:04 +00:00
[dev-dependencies]
2022-09-25 09:27:03 +00:00
test-case = "2.2.1"