File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
language : rust
2
2
rust :
3
- - stable
3
+ - stable
4
4
- nightly
5
5
os :
6
6
- osx
Original file line number Diff line number Diff line change 84
84
* C types are now used from ` std::os::raw ` rather than ` libc ` . This means
85
85
` Encode ` may not be implemented for ` libc ` types; switch them to the
86
86
` std::os::raw ` equivalents instead. This avoids an issue that would arise
87
- from simultaneously using different versions of the libc crate.
87
+ from simultaneously using different versions of the libc crate.
88
88
89
89
* Dynamic messaging was moved into the ` Message ` trait; instead of
90
90
` ().send(obj, sel!(description)) ` , use
110
110
### Fixed
111
111
112
112
* Corrected alignment of ivars in ` ClassDecl ` ; declared classes may now have a
113
- smaller size.
113
+ smaller size.
114
114
115
115
* With the ` "exception" ` or ` "verify_message" ` feature enabled, panics from
116
116
` msg_send! ` will now be triggered from the line and file where the macro is
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ documentation = "http://ssheldon.github.io/rust-objc/objc/"
12
12
license = " MIT"
13
13
14
14
exclude = [
15
- " .gitignore" ,
16
- " .travis.yml" ,
17
- " doc.sh" ,
18
- " travis_install.sh" ,
19
- " travis_test.sh" ,
20
- " tests-ios/**" ,
21
- ]
15
+ " .gitignore" ,
16
+ " .travis.yml" ,
17
+ " doc.sh" ,
18
+ " travis_install.sh" ,
19
+ " travis_test.sh" ,
20
+ " tests-ios/**" ,
21
+ ]
22
22
23
23
[features ]
24
24
exception = [" objc_exception" ]
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ documentation = "http://ssheldon.github.io/rust-objc/objc_encode/"
13
13
license = " MIT"
14
14
15
15
exclude = [
16
- " .gitignore" ,
16
+ " .gitignore" ,
17
17
]
You can’t perform that action at this time.
0 commit comments