I use the cargo.toml with features like :
[features]
default = ["gwc"]
dev-graph = ["plotters", "tabbycat"]
gadget-traces = ["backtrace"]
sanity-checks = []
shplonk = []
gwc = []
cuda = ["ec-gpu-gen/cuda", "pairing/gpu"]
But my program says that:
code is inactive due to #[cfg] directives: feature = "cuda" is disabled
Is there anything missing about the code ?