Skip to content

Commit 25f854d

Browse files
committed
deploy: 6a54d7c
1 parent 63645a9 commit 25f854d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

print.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,11 @@ <h2 id="how-to-read-this-book"><a class="header" href="#how-to-read-this-book">H
272272
<p>The rest of this 'getting started' section assumes Cargo - if you're using something else, see the <a href="building.html">building</a> section.</p>
273273
<p>First, add <code>autocxx</code> <em>and <code>cxx</code></em> to your <code>dependencies</code> and <code>autocxx-build</code> to your <code>build-dependencies</code> in your <code>Cargo.toml</code>. <strong>You must specify both.</strong></p>
274274
<pre><code class="language-toml">[dependencies]
275-
autocxx = "0.26.0"
275+
autocxx = "0.27.0"
276276
cxx = "1.0"
277277

278278
[build-dependencies]
279-
autocxx-build = "0.26.0"
279+
autocxx-build = "0.27.0"
280280
miette = { version = "5", features = ["fancy"] } # optional but gives nicer error messages!
281281
</code></pre>
282282
<p>Now, add a <code>build.rs</code> next to your <code>Cargo.toml</code> (this is a standard <code>cargo</code> <a href="https://doc.rust-lang.org/cargo/reference/build-scripts.html">build script</a>). This is where you need your include path:</p>

searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

searchindex.json

+1-1
Large diffs are not rendered by default.

tutorial.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,11 @@ <h1 id="tutorial"><a class="header" href="#tutorial">Tutorial</a></h1>
191191
<p>The rest of this 'getting started' section assumes Cargo - if you're using something else, see the <a href="building.html">building</a> section.</p>
192192
<p>First, add <code>autocxx</code> <em>and <code>cxx</code></em> to your <code>dependencies</code> and <code>autocxx-build</code> to your <code>build-dependencies</code> in your <code>Cargo.toml</code>. <strong>You must specify both.</strong></p>
193193
<pre><code class="language-toml">[dependencies]
194-
autocxx = "0.26.0"
194+
autocxx = "0.27.0"
195195
cxx = "1.0"
196196

197197
[build-dependencies]
198-
autocxx-build = "0.26.0"
198+
autocxx-build = "0.27.0"
199199
miette = { version = "5", features = ["fancy"] } # optional but gives nicer error messages!
200200
</code></pre>
201201
<p>Now, add a <code>build.rs</code> next to your <code>Cargo.toml</code> (this is a standard <code>cargo</code> <a href="https://doc.rust-lang.org/cargo/reference/build-scripts.html">build script</a>). This is where you need your include path:</p>

0 commit comments

Comments
 (0)