-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (42 loc) · 1.29 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (42 loc) · 1.29 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
# SPDX-License-Identifier: MPL-2.0
[package]
name = "echidna-graphql"
version = "0.1.0"
edition = "2021"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
license = "MPL-2.0"
description = "GraphQL interface for ECHIDNA theorem proving platform"
repository = "https://github.com/hyperpolymath/echidna-graphql"
readme = "README.adoc"
keywords = ["theorem-proving", "graphql", "formal-verification", "proofs"]
categories = ["api-bindings", "science"]
[[bin]]
name = "echidna-graphql"
path = "main.rs"
[dependencies]
# GraphQL
async-graphql = "7.0"
async-graphql-axum = "7.0"
# Web framework
axum = "0.8"
tokio = { version = "1.41", features = ["full"] }
tower-http = { version = "0.7", features = ["cors"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# ECHIDNA core
echidna = { path = "../../.." }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Async trait support
async-trait = "0.1"
# HTTP client (for Julia ML API)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# UUID generation
uuid = { version = "1.11", features = ["v4", "serde"] }
[dev-dependencies]
reqwest = { version = "0.12", features = ["json"] }