steid

@jamesgill /

steid/Cargo.toml
882 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"
e0856ebfeat: clone a public repository over HTTP8d
8bytes = "1"
0d12f7dfeat: config from env and SQLite pool in app context1mo
9dotenvy = "0.15.7"
10envy = "0.4.2"
e0856ebfeat: clone a public repository over HTTP8d
11futures-util = { version = "0.3", default-features = false, features = ["std"] }
12http-body = "1"
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo
13rand = "0.10.2"
0d12f7dfeat: config from env and SQLite pool in app context1mo
14serde = { version = "1.0.229", features = ["derive"] }
e51b80cfeat: sqlite migrations for the identity schema1mo
15sqlx = { 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
16subtle = "2.6.1"
47db238feat: serve the git protocol through http-backend, behind a port8d
17tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros", "process", "fs", "io-util"] }
e0856ebfeat: clone a public repository over HTTP8d
18tokio-util = { version = "0.7", features = ["io"] }
285f5fdfeat: create and view repositories through the browser24d
19topcoat = { version = "0.5.0", features = ["icon-iconify", "tailwind", "ui"] }
1e1ae56feat: identity domain model1mo
20uuid = { version = "1.24.0", features = ["v4"] }
af126c7feat: tailwind theme and the first components25d
21
22[build-dependencies]
285f5fdfeat: create and view repositories through the browser24d
23topcoat = { version = "0.5.0", default-features = false, features = ["tailwind", "icon-iconify"] }
02eb2e4feat: GitStorage port and DiskGitStorage24d
24
25[dev-dependencies]
26tempfile = "3.27.0"