steid

@jamesgill /

steid/Cargo.toml
678 BCode·Blame·Raw
1111df1feat: init1mo
1[package]
2name = "steid"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
26d9828feat: password hashing behind a port1mo
7argon2 = "0.5.3"
0d12f7dfeat: config from env and SQLite pool in app context1mo
8dotenvy = "0.15.7"
9envy = "0.4.2"
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo
10rand = "0.10.2"
0d12f7dfeat: config from env and SQLite pool in app context1mo
11serde = { version = "1.0.229", features = ["derive"] }
e51b80cfeat: sqlite migrations for the identity schema1mo
12sqlx = { version = "0.9.0", default-features = false, features = ["runtime-tokio", "sqlite", "macros", "migrate"] }
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo
13subtle = "2.6.1"
02eb2e4feat: GitStorage port and DiskGitStorage24d
14tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros", "process", "fs"] }
af126c7feat: tailwind theme and the first components25d
15topcoat = { version = "0.5.0", features = ["tailwind", "ui"] }
1e1ae56feat: identity domain model1mo
16uuid = { version = "1.24.0", features = ["v4"] }
af126c7feat: tailwind theme and the first components25d
17
18[build-dependencies]
19topcoat = { version = "0.5.0", default-features = false, features = ["tailwind"] }
02eb2e4feat: GitStorage port and DiskGitStorage24d
20
21[dev-dependencies]
22tempfile = "3.27.0"