🐳 chore(codes): add cargo for rust codes

This commit is contained in:
xblakicex
2023-01-13 19:04:06 +01:00
parent 705fc86e89
commit d0359378f3
3 changed files with 92 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
[package]
name = "chapter_computational_complexity"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "time_complexity"
path = "chapter_computational_complexity/time_complexity.rs"
[[bin]]
name = "worst_best_time_complexity"
path = "chapter_computational_complexity/worst_best_time_complexity.rs"
[dependencies]
rand = "0.8.5"