| 1 | [package] |
| 2 | name = "steid" |
7fb0b5ebuild: release 0.2.0, and target AWS Lightsail1d | 3 | version = "0.2.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" |
4ef3945feat: repository settings, README rendering, branch switcher, raw files7d | 14 | pulldown-cmark = { version = "0.13", default-features = false } |
c1a35b0feat: claim the instance on first run instead of bootstrapping from config1mo | 15 | rand = "0.10.2" |
0d12f7dfeat: config from env and SQLite pool in app context1mo | 16 | serde = { version = "1.0.229", features = ["derive"] } |
8608574feat: personal access tokens, as a domain type8d | 17 | sha2 = "0.10" |
e51b80cfeat: sqlite migrations for the identity schema1mo | 18 | 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 | 19 | subtle = "2.6.1" |
979134bfeat: code reads as code, in classes rather than colours17h | 20 | syntect = { version = "5.3.0", default-features = false, features = ["default-fancy"] } |
c974d80feat: every read-side git process is bounded, and a timeout is not a fault17h | 21 | tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros", "process", "fs", "io-util", "time"] } |
e0856ebfeat: clone a public repository over HTTP8d | 22 | tokio-util = { version = "0.7", features = ["io"] } |
285f5fdfeat: create and view repositories through the browser24d | 23 | topcoat = { version = "0.5.0", features = ["icon-iconify", "tailwind", "ui"] } |
8331d0cfeat: the languages this repository actually uses17h | 24 | two-face = { version = "0.5.2", default-features = false, features = ["syntect-fancy"] } |
1e1ae56feat: identity domain model1mo | 25 | uuid = { version = "1.24.0", features = ["v4"] } |
af126c7feat: tailwind theme and the first components25d | 26 | |
| 27 | [build-dependencies] |
285f5fdfeat: create and view repositories through the browser24d | 28 | topcoat = { version = "0.5.0", default-features = false, features = ["tailwind", "icon-iconify"] } |
02eb2e4feat: GitStorage port and DiskGitStorage24d | 29 | |
| 30 | [dev-dependencies] |
| 31 | tempfile = "3.27.0" |