72ed45a77c
- remove `cargo-make` integration - rework CI pipeline more granular and precise - rework releasing process - tune up project layout - fill up new CHANGELOGs Additionally: - fix latest nightly/stable Rust inconsistencies
14 lines
430 B
TOML
14 lines
430 B
TOML
[package]
|
|
name = "example_basic_subscriptions"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
authors = ["Jordao Rosario <jordao.rosario01@gmail.com>"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
juniper = { path = "../../juniper" }
|
|
juniper_subscriptions = { path = "../../juniper_subscriptions" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|