Skip to content

Commit 739f9dc

Browse files
committed
2. Up version.
1 parent 059aec8 commit 739f9dc

File tree

9 files changed

+5
-9
lines changed

9 files changed

+5
-9
lines changed

.gitignore

100755100644
File mode changed.

.travis.yml

100755100644
File mode changed.

Cargo.toml

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clucstr"
3-
version = "1.1.9"
3+
version = "1.1.91"
44
authors = ["Denis Kotlyarov (Денис Котляров) <[email protected]>"]
55
repository = "https://github.com/clucompany/cluCStr.git"
66
edition = "2018"

LICENSE

100755100644
File mode changed.

README.md

100755100644
File mode changed.

examples/panic.rs

100755100644
File mode changed.

examples/use.rs

100755100644
File mode changed.

src/lib.rs

100755100644
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,15 +191,12 @@ Copyright 2019 #UlinProject Denis Kotlyarov (Денис Котляров)
191191
Licensed under the Apache License, Version 2.0
192192
*/
193193

194-
#![feature(test)]
195-
#![feature(plugin_registrar)]
196-
#![feature(rustc_private)]
194+
#![crate_type="dylib"]
195+
#![feature(plugin_registrar, rustc_private)]
197196

198197

199198
extern crate syntax;
200-
extern crate rustc;
201-
extern crate rustc_plugin;
202-
199+
extern crate rustc_driver;
203200

204201
mod nightly;
205202
pub use self::nightly::*;

src/nightly.rs

100755100644
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
use syntax::source_map::Span;
33
use syntax::tokenstream::TokenTree;
44
use syntax::ext::base::{ExtCtxt, MacResult, DummyResult, MacEager};
5-
use rustc_plugin::Registry;
65
use syntax::ast::ExprKind;
76
use syntax::ast::LitKind;
87
use syntax::ast::Mutability;
@@ -17,7 +16,7 @@ use syntax::ptr::P;
1716
use syntax::ast;
1817
use syntax::ast::IntTy;
1918
use syntax::parse::token::TokenKind;
20-
19+
use rustc_driver::plugin::Registry;
2120

2221
#[doc(hidden)]
2322
#[plugin_registrar]

0 commit comments

Comments
 (0)