-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (73 loc) · 2.83 KB
/
Cargo.toml
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
73
74
75
76
77
[workspace]
members = [
"risuto-api",
"risuto-client",
"risuto-ctl",
"risuto-mock-server",
"risuto-server",
"risuto-web",
"tests",
]
[workspace.dependencies]
risuto-api = { path = "./risuto-api" }
risuto-client = { path = "./risuto-client" }
risuto-mock-server = { path = "./risuto-mock-server" }
anyhow = "1.0"
arbitrary = "1.2"
arrayvec = "0.7.2"
async-recursion = "1.0"
async-trait = "0.1.58"
axum = { version = "0.6.1", features = ["macros", "ws"] }
base64 = "0.13.0"
bcrypt = "0.13.0"
# TODO: remove once this PR lands https://github.com/camshaft/bolero/pull/108
bolero = { git = "https://github.com/Ekleog/bolero", rev = "fe75abd76be2f4badc0e3589eb189a2d32c6485a", features = ["arbitrary"] }
chrono = { version = "0.4.22", features = ["arbitrary", "serde"] }
# TODO: remove once this PR lands https://github.com/chronotope/chrono-tz/pull/124
chrono-tz = { git = "https://github.com/Ekleog/chrono-tz", rev = "d9be1348755f9b6300d363babd0862f20d4ae54d", features = ["arbitrary", "serde"] }
futures = "0.3.25"
http = "0.2.8"
hyper = "0.14.23"
getrandom = "0.2"
gloo-storage = "0.2.2"
im = "15.1"
js-sys = "0.3.60"
lazy_static = "1.4"
lipsum = "0.8.2"
num = "0.4.0"
parking_lot = { version = "0.11.2", features = ["wasm-bindgen"] } # work around https://github.com/tomaka/wasm-timer/issues/14
pest = "2.5"
pest_derive = "2.5"
postgresfixture = "0.3.1"
rand = "0.8.5"
reqwest = { version = "0.11.12", features = ["json"] }
# TODO: remove once this PR lands https://github.com/TrueLayer/reqwest-middleware/pull/79
reqwest-middleware = { git = "https://github.com/ekleog/reqwest-middleware", rev = "7690746f07df7d6acd1576e8eb28fdda3b6f50f4" }
reqwest-retry = { git = "https://github.com/ekleog/reqwest-middleware", rev = "7690746f07df7d6acd1576e8eb28fdda3b6f50f4" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sortable-js = "0.1.5"
sqlx = { version = "0.6.2", features = ["chrono", "json", "postgres", "runtime-tokio-rustls", "uuid"] }
structopt = "0.3.26"
tantivy = { version = "0.19.0", default-features = false, features = ["stopwords"] }
tempfile = "3.3"
thiserror = "1.0"
tokio = { version = "1.21", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.3.4", features = ["trace"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.15"
tracing-wasm = "0.2.1"
uuid = { version = "1.2", features = ["arbitrary", "serde", "v4"] }
wasm-bindgen = "0.2.83"
wasm-bindgen-futures = "0.4.33"
wasm-timer = "0.2.5"
web-sys = { version = "0.3.60", features = ["CssStyleDeclaration", "DataTransfer"] }
whoami = "1.2"
ws_stream_wasm = "0.7.3"
yew = { version = "0.20.0", features = ["csr"] }
[patch.crates-io]
# TODO: remove once this PR lands https://github.com/chronotope/chrono/pull/942
chrono = { git = "https://github.com/ekleog/chrono", rev = "6e7034f75b2d8d64624566522a1ff3fb1e4f2951" }
[profile.dev.package.sqlx-macros]
opt-level = 3