Skip to content

Commit f5d6bcc

Browse files
committed
feat: rust
1 parent 9c545ed commit f5d6bcc

File tree

6 files changed

+1092
-2
lines changed

6 files changed

+1092
-2
lines changed

Cargo.lock

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace]
22
resolver = "2"
3-
members = ["crates/day01"]
3+
members = ["crates/day01", "crates/day02"]
44

55
[profile.release]
66
opt-level = 'z'

crates/day01/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ edition = "2021"
77
workspace = true
88

99
[features]
10+
default = ["unstable"]
1011
unstable = []

crates/day02/Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "day02"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[lints]
7+
workspace = true
8+
9+
[features]
10+
default = ["unstable"]
11+
unstable = []

0 commit comments

Comments
 (0)