-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (69 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
72 lines (69 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[workspace]
members = [
"fediproto-sync",
"fediproto-sync-auth-ui",
"fediproto-sync-build-macros",
"fediproto-sync-db",
"fediproto-sync-lib",
]
resolver = "2"
package.authors = ["Tim Small"]
package.homepage = "https://github.com/Smalls1652/fediproto-sync"
package.repository = "https://github.com/Smalls1652/fediproto-sync"
package.license = "MIT"
package.license-file = "LICENSE"
package.edition = "2024"
[profile.release]
opt-level = "s"
lto = true
[workspace.dependencies]
anyhow = "1.0.98"
async-session = "3.0.0"
atrium-api = "0.25.2"
atrium-xrpc-client = "0.5.13"
axum = { version = "0.8.3", features = ["macros"] }
axum-extra = { version = "0.12.0", features = ["typed-header"] }
bytes = "1.10.1"
chrono = { version = "0.4.41", features = ["serde"] }
clap = { version = "4.5.43", features = ["derive", "env"]}
diesel = { version = "2.2.12", features = [
"32-column-tables",
"chrono",
"postgres",
"postgres_backend",
"r2d2",
"returning_clauses_for_sqlite_3_35",
"serde_json",
"sqlite",
"uuid",
], default-features = false }
diesel_migrations = { version = "2.2.0", features = ["postgres", "sqlite"] }
dom_query = "0.27.0"
dotenvy = "0.15.7"
git-version = "0.3.9"
image = "0.25.6"
ipld-core = "0.4.2"
libsqlite3-sys = { version = "0.35.0", features = ["bundled"] }
megalodon = "1.0.3"
oauth2 = "4.4.2"
once_cell = "1.21.3"
openssl = { version = "0.10.73" }
#pq-sys = { version = "0.7.1", features = ["bundled"] }
rand = "0.10.0"
regex = { version = "1.11.1", features = ["std"] }
reqwest = { version = "0.13.0", features = [
"json",
"rustls",
"query"
], default-features = false }
rstest = "0.26.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
snmalloc-rs = { version = "0.7.0" }
thiserror = "2.0.12"
tikv-jemallocator = { version = "0.6.0" }
tokio = { version = "1.47.1", features = ["full"] }
toml_edit = "0.25.0"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
uuid = { version = "1.17.0", features = ["fast-rng", "v4", "v7"] }