36 lines
808 B
TOML
36 lines
808 B
TOML
[package]
|
|
name = "fiddle"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
actix-cors = "0.6.4"
|
|
actix-web = "4.3.1"
|
|
anyhow = { version = "1.0.71", features = ["backtrace"] }
|
|
async-trait = "0.1.68"
|
|
chrono = "0.4.26"
|
|
dataloader = "0.16.0"
|
|
debug-ignore = "1.0.5"
|
|
diesel = { version = "2.1.0", features = [
|
|
"postgres",
|
|
"chrono",
|
|
"r2d2",
|
|
"uuid",
|
|
] }
|
|
env_logger = "0.10.0"
|
|
envconfig = "0.10.0"
|
|
juniper = { version = "0.15.11", features = ["uuid"] }
|
|
juniper_actix = "0.4.0"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.18"
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
|
uuid-simd = "0.8.0"
|
|
uuidv7 = { version = "1.3.2", package = "uuid", features = ["serde"] }
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
tikv-jemallocator = "0.5"
|