tangled
alpha
login
or
join now
a.starrysky.fyi
/
calpoll
Take the pain out of keeping all your calendars together
0
fork
atom
overview
issues
pulls
pipelines
init: create basic rust project
a.starrysky.fyi
2 months ago
57af98d5
06dac2e1
verified
This commit was signed with the committer's
known signature
.
a.starrysky.fyi
SSH Key Fingerprint:
SHA256:fvif+XXqG4oFyBAQC1CLV3s3xTqMuCTpfHRNwPPtUMo=
options
unified
split
Changed files
+25
.gitignore
Cargo.lock
Cargo.toml
nilla.nix
src
main.rs
+1
.gitignore
···
0
···
1
+
/target
+7
Cargo.lock
···
0
0
0
0
0
0
0
···
1
+
# This file is automatically @generated by Cargo.
2
+
# It is not intended for manual editing.
3
+
version = 4
4
+
5
+
[[package]]
6
+
name = "calpoll"
7
+
version = "0.1.0"
+6
Cargo.toml
···
0
0
0
0
0
0
···
1
+
[package]
2
+
name = "calpoll"
3
+
version = "0.1.0"
4
+
edition = "2024"
5
+
6
+
[dependencies]
+8
nilla.nix
···
22
23
shell =
24
{
0
0
25
mkShell,
26
pkgs,
27
reuse,
0
0
28
system,
29
...
30
}:
31
mkShell {
32
packages = [
33
(config.inputs.npins.result { inherit pkgs system; })
0
0
34
reuse
0
0
35
];
36
};
37
};
···
22
23
shell =
24
{
25
+
bacon,
26
+
cargo,
27
mkShell,
28
pkgs,
29
reuse,
30
+
rust-analyzer,
31
+
rustc,
32
system,
33
...
34
}:
35
mkShell {
36
packages = [
37
(config.inputs.npins.result { inherit pkgs system; })
38
+
bacon
39
+
cargo
40
reuse
41
+
rust-analyzer
42
+
rustc
43
];
44
};
45
};
+3
src/main.rs
···
0
0
0
···
1
+
fn main() {
2
+
println!("Hello, world!");
3
+
}