-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 811 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (22 loc) · 811 Bytes
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
[package]
name = "phoebus"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
apollo-compiler = { git = "https://github.com/zackangelo/apollo-rs.git", branch = "more_muts_092" }
# apollo-compiler = { path = "../apollo-rs/crates/apollo-compiler" }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.153", features = ["derive"] }
serde_json = "1.0.94"
tracing = "0.1.37"
anyhow = "1.0.69"
indexmap = { version = "1.9.2", features = [ "serde" ] }
bytes = "1.4.0"
async-recursion = "1.0.4"
async-trait = "0.1"
futures = "0.3.27"
[dev-dependencies]
tracing-subscriber = { version = "0.3.16", features = [ "env-filter" ] }
handlebars = "4.3.6"
axum = { version = "0.6.12", features = ["json"] }