Sono nuovo a Rust e sto tentando di creare un progetto di prova con Cargo. Il mio Cargo.toml
assomiglia:non è stato in grado di analizzare manifest: nessun target specificato
[package]
name = "rust-play"
version = "0.0.1"
authors = [ "Bradley Wogsland <omitted>" ]
(ma il file TOML effettivo non omette la mia e-mail). Quando mi cargo build
Sto ottenendo il seguente errore:
error: failed to parse manifest at
/Users/wogsland/Projects/rust-play/Cargo.toml
Caused by: no targets specified in the manifest either src/lib.rs, src/main.rs, a [lib] section, or [[bin]] section must be present
mia funzione main
è in un file src/test.rs
. Devo specificarlo nel file TOML? Se é cosi, come? Ho provato ad aggiungere
target = "src/test.rs"
inutilmente.
Grazie, è stato molto utile! – wogsland