Home
last modified time | relevance | path

Searched full:cargo (Results 1 – 20 of 20) sorted by relevance

/libCEED/.github/workflows/
H A Drust-test-with-style.yml27 - name: Install cargo-llvm-cov
30 tool: cargo-llvm-cov
35 run: cargo llvm-cov test --doctests --lcov --output-path lcov.info
61 cargo +nightly fmt --version
62 cargo +nightly fmt -- --check
H A Drust-documentation.yml27 cargo +nightly doc --package libceed-sys --package libceed --no-deps
/libCEED/rust/libceed-sys/
H A Dbuild.rs48 // Tell cargo to invalidate the built crate whenever the wrapper changes in main()
49 println!("cargo:rerun-if-changed=c-src/include/ceed.h"); in main()
50 println!("cargo:rerun-if-changed=c-src/include/ceed/types.h"); in main()
51 println!("cargo:rerun-if-changed=c-src/Makefile"); in main()
53 println!("cargo:rerun-if-changed=c-src/config.mk"); in main()
73 // Tell cargo to not mangle the function names in main()
75 // Tell cargo to invalidate the built crate whenever any of the in main()
H A DREADME.md12 To use low level libCEED bindings in a Rust package, the following `Cargo.toml` can be used.
18 For a development version of the libCEED Rust bindings, use the following `Cargo.toml`.
30 To develop libCEED, use `cargo build` in the `rust/libceed-sys` directory to install a local copy a…
33 If that file exists during `cargo build` then edits will prompt recompilation of the bindings.
51 where the precise hash value is printed during `cargo build --verbose` or you can find it with `fin…
54 …unds will become unnecessary if [this issue](https://github.com/rust-lang/cargo/issues/1592) is re…
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust-qfunctions/
H A DMakefile29cargo +nightly build --release --manifest-path ex1-volume-rs/Cargo.toml --config ex1-volume-rs/.ca…
/libCEED/rust/libceed/
H A DREADME.md14 To call libCEED from a Rust package, the following `Cargo.toml` can be used.
20 For a development version of the libCEED Rust bindings, use the following `Cargo.toml`.
52 cargo doc --features=katexit
H A D.gitignore2 Cargo.lock
/libCEED/
H A DRELEASING.md173 $ cargo release --no-tag --no-push --no-publish 0.12.0 --execute
178 1. `cargo package --list --package libceed-sys` and `--package libceed` to see that the file list m…
179 2. `cargo release` to build crates locally (handling dependencies between creates in the workspace)
180 3. `cargo release publish --execute` to publish the crates to https://crates.io
H A D.gitignore44 Cargo.lock
H A DREADME.md121 Rust users can include libCEED via `Cargo.toml`:
128 See the [Cargo documentation](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.htm…
/libCEED/examples/rust/ex1-volume-vector/
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust/ex3-volume-vector/
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust/ex2-surface-vector/
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust/ex1-volume/
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust/mesh/
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust/ex3-volume/
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust/ex2-surface/
H A D.gitignore2 Cargo.lock
/libCEED/examples/rust-qfunctions/ex1-volume-rs/
H A D.gitignore3 Cargo.lock
/libCEED/backends/cuda/
H A Dceed-cuda-compile.cpp280 …command = "cargo +" + std::string(rust_toolchain) + " build --release --target nvptx64-nvidia-cuda… in CeedCompileCore_Cuda()
281 "/.cargo/config.toml --manifest-path " + rust_dirs[i] + "/Cargo.toml"; in CeedCompileCore_Cuda()