Skip to content

Commit 4425c54

Browse files
committed
Use conllx 0.3.0.
1 parent 27ea46f commit 4425c54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.2.0"
44
authors = ["Daniël de Kok <[email protected]>"]
55

66
[dependencies]
7-
conllx = "0.2"
7+
conllx = "0.3"
88
itertools = "0.4"
99
lazy_static = "0.2"
1010
maplit = "0.1"

src/layer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn cpos(t: &Token) -> Option<&str> {
2323
}
2424

2525
fn features(t: &Token) -> Option<&str> {
26-
t.features().as_ref().map(Features::as_str)
26+
t.features().map(Features::as_str)
2727
}
2828

2929
fn form(t: &Token) -> Option<&str> {

0 commit comments

Comments
 (0)