alpha
Login
or
Join now
microcosm.blue
/
microcosm-rs
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
env for secret
author
phil
date
1 year ago
(Jul 1, 2025, 3:16 PM -0400)
commit
620ba018
620ba018e44c40287acfd8fa23c3ca2581f1e4df
parent
db6f3273
db6f32732aa5b039dfb2fa90ff3abef6762f8a94
+2
-2
2 changed files
Expand all
Collapse all
Unified
Split
who-am-i
Cargo.toml
src
main.rs
+1
-1
who-am-i/Cargo.toml
Reviewed
···
11
11
axum = "0.8.4"
12
12
axum-extra = { version = "0.10.1", features = ["cookie-signed", "typed-header"] }
13
13
axum-template = { version = "3.0.0", features = ["handlebars"] }
14
14
-
clap = { version = "4.5.40", features = ["derive"] }
14
14
+
clap = { version = "4.5.40", features = ["derive", "env"] }
15
15
ctrlc = "3.4.7"
16
16
dashmap = "6.1.0"
17
17
handlebars = { version = "6.3.2", features = ["dir_source"] }
+1
-1
who-am-i/src/main.rs
Reviewed
···
11
11
/// must have at least 512 bits (64 bytes) of randomness
12
12
///
13
13
/// eg: `cat /dev/urandom | head -c 64 | base64`
14
14
-
#[arg(long)]
14
14
+
#[arg(long, env)]
15
15
app_secret: String,
16
16
/// Enable dev mode
17
17
///