-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (26 loc) · 1004 Bytes
/
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
[package]
name = "mnemosyne"
version = "0.1.0"
authors = ["Cyrix126 <[email protected]>"]
edition = "2021"
[dependencies]
confy = "0.6"
serde = { version = "1", features = ["derive", "rc"]}
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
axum = {version="0.7", default-features=false, features= ["tokio", "http2", "macros", "json", "query", "form", "matched-path", "original-uri"] }
tokio = {version="1", default-features=false, features= ["rt-multi-thread", "sync", "macros"] }
reqwest = {version="0.12", default-features=false, features=["rustls-tls", "http2"]}
url = {version="2.5", features=["serde"]}
moka = {version="0.12", features=["future"]}
ahash = "0.8"
uuid = {version="1.10", features=["v4", "fast-rng"]}
nohash = "0.2"
derive_more = {version="0.99", default-features=false, features=["deref", "deref_mut"]}
enclose = "1.2"
typesize = "0.1"
aide = {version="0.13", features=["axum"]}
tower-http = {version="0.5", features=["set-header"]}
[dev-dependencies]
axum-test = "15.3"