| 1 | [package] |
| 2 | name = "steid" |
| 3 | version = "0.1.0" |
| 4 | edition = "2024" |
| 5 | |
| 6 | [dependencies] |
26d9828feat: password hashing behind a port1mo | 7 | argon2 = "0.5.3" |
a814db5feat: push and clone private repositories with a token8d | 8 | base64 = "0.22" |
e0856ebfeat: clone a public repository over HTTP8d | 9 | bytes = "1" |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 10 | dotenvy = "0.15.7" |
| 11 | envy = "0.4.2" |
e0856ebfeat: clone a public repository over HTTP8d | 12 | futures-util = { version = "0.3", default-features = false, features = ["std"] } |
| 13 | http-body = "1" |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 14 | rand = "0.10.2" |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 15 | serde = { version = "1.0.229", features = ["derive"] } |
8608574feat: personal access tokens, as a domain type8d | 16 | sha2 = "0.10" |
e51b80cfeat: sqlite migrations for the identity schema1mo | 17 | sqlx = { 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 | 18 | subtle = "2.6.1" |
47db238feat: serve the git protocol through http-backend, behind a port8d | 19 | tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros", "process", "fs", "io-util"] } |
e0856ebfeat: clone a public repository over HTTP8d | 20 | tokio-util = { version = "0.7", features = ["io"] } |
285f5fdfeat: create and view repositories through the browser24d | 21 | topcoat = { version = "0.5.0", features = ["icon-iconify", "tailwind", "ui"] } |
1e1ae56feat: identity domain model1mo | 22 | uuid = { version = "1.24.0", features = ["v4"] } |
af126c7feat: tailwind theme and the first components25d | 23 | |
| 24 | [build-dependencies] |
285f5fdfeat: create and view repositories through the browser24d | 25 | topcoat = { version = "0.5.0", default-features = false, features = ["tailwind", "icon-iconify"] } |
02eb2e4feat: GitStorage port and DiskGitStorage24d | 26 | |
| 27 | [dev-dependencies] |
| 28 | tempfile = "3.27.0" |