<feed xmlns='http://www.w3.org/2005/Atom'>
<title>validator/validator_derive/tests/run-pass, branch master</title>
<subtitle>Simple validation for Rust structs</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/'/>
<entry>
<title>Fix bug + cargo fmt</title>
<updated>2019-10-17T21:02:51+00:00</updated>
<author>
<name>Vincent Prouillet</name>
</author>
<published>2019-10-17T21:02:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=52cd62998b8f45be56512ce1d89aef8bf1a9f670'/>
<id>52cd62998b8f45be56512ce1d89aef8bf1a9f670</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #69: Change `range` to require only one arg</title>
<updated>2019-04-28T18:01:08+00:00</updated>
<author>
<name>Caroline Glassberg-Powell</name>
</author>
<published>2019-04-28T17:45:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=6e8effdaa2b47f4056a00d301a9e7a5a1a2fd8dc'/>
<id>6e8effdaa2b47f4056a00d301a9e7a5a1a2fd8dc</id>
<content type='text'>
Currently range is hard-coded to take both max and min. This is
unhelpful in cases where we may only want to check one of the bounds.

Update so that it behaves more like the `length` validator and can take
either max or min, as well as both. Also ensure that at least one of
them is supplied.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently range is hard-coded to take both max and min. This is
unhelpful in cases where we may only want to check one of the bounds.

Update so that it behaves more like the `length` validator and can take
either max or min, as well as both. Also ensure that at least one of
them is supplied.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare for release</title>
<updated>2018-05-29T20:22:01+00:00</updated>
<author>
<name>Vincent Prouillet</name>
</author>
<published>2018-05-29T20:22:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=287e83a27988fb7de5871e9ce4c8ba8c515b2076'/>
<id>287e83a27988fb7de5871e9ce4c8ba8c515b2076</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix path parsing for regex validators</title>
<updated>2018-04-13T18:48:12+00:00</updated>
<author>
<name>Erin</name>
</author>
<published>2018-04-13T18:48:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=56a5a34c8653f6475d00ca99c22f50d255a0669d'/>
<id>56a5a34c8653f6475d00ca99c22f50d255a0669d</id>
<content type='text'>
see also: 8ca1fe94d779dcccf4b3f4c23a08f3ede7e10956
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
see also: 8ca1fe94d779dcccf4b3f4c23a08f3ede7e10956
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix path parsing for custom validators</title>
<updated>2018-03-18T22:38:38+00:00</updated>
<author>
<name>Bastien Orivel</name>
</author>
<published>2018-03-18T22:38:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=8ca1fe94d779dcccf4b3f4c23a08f3ede7e10956'/>
<id>8ca1fe94d779dcccf4b3f4c23a08f3ede7e10956</id>
<content type='text'>
`::foo::bar` isn't a valid ident in syn 0.12. This lead to some code
failing to compile if it was using paths as custom validators.
This fixes it and adds a test.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`::foo::bar` isn't a valid ident in syn 0.12. This lead to some code
failing to compile if it was using paths as custom validators.
This fixes it and adds a test.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ability to validate an international phone number</title>
<updated>2017-11-07T12:59:58+00:00</updated>
<author>
<name>Valerian Saliou</name>
</author>
<published>2017-10-10T01:36:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=304ff212e20cd10e2f4bc99a54385db461a3a27d'/>
<id>304ff212e20cd10e2f4bc99a54385db461a3a27d</id>
<content type='text'>
Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Derives for the ‘phone’ validator (still unsure about it)

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Fix review

Merge + Add missing documented ‘credit_cards’ feature

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Fix

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Fix

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Merge

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

‘credit_cards’ feature is no longer needed as per #33

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Derives for the ‘phone’ validator (still unsure about it)

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Fix review

Merge + Add missing documented ‘credit_cards’ feature

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Fix

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Fix

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

Merge

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;

‘credit_cards’ feature is no longer needed as per #33

Signed-off-by: Valerian Saliou &lt;valerian@valeriansaliou.name&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revamp</title>
<updated>2017-05-28T14:52:07+00:00</updated>
<author>
<name>Vincent Prouillet</name>
</author>
<published>2017-05-25T15:49:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=b31fd25cc5cec96ccee737ba1313c6e9f702f32a'/>
<id>b31fd25cc5cec96ccee737ba1313c6e9f702f32a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for Option in range validator</title>
<updated>2017-05-22T14:36:08+00:00</updated>
<author>
<name>Vincent Prouillet</name>
</author>
<published>2017-05-22T14:36:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=314867ecf7f1ac29e9035b5f5f6acab1e82b62b0'/>
<id>314867ecf7f1ac29e9035b5f5f6acab1e82b62b0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Validator works for Option&lt;&amp;</title>
<updated>2017-01-19T04:38:47+00:00</updated>
<author>
<name>Vincent Prouillet</name>
</author>
<published>2017-01-18T13:43:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=696e4273173033a6b1d488416c5433d9c49eb8e9'/>
<id>696e4273173033a6b1d488416c5433d9c49eb8e9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make it work with lifetimes</title>
<updated>2017-01-19T04:38:47+00:00</updated>
<author>
<name>Vincent Prouillet</name>
</author>
<published>2017-01-18T12:35:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/validator/commit/?id=1fd1b3d708a2737c2a678df8a37e719c29c754bc'/>
<id>1fd1b3d708a2737c2a678df8a37e719c29c754bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
