File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 36
36
# triple: x86_64-pc-windows-gnu
37
37
- name : Linux
38
38
triple : x86_64-unknown-linux-gnu
39
+ - name : Android
40
+ triple : aarch64-linux-android
39
41
- name : macOS
40
42
triple : x86_64-apple-darwin
41
43
- name : FreeBSD
Original file line number Diff line number Diff line change
1
+ # Unreleased
2
+ - Added support for Android
3
+
1
4
# 0.1.4
2
5
3
6
- Modified MacOS implementation to be friendly towards Apple app store review guidelines.
Original file line number Diff line number Diff line change 2
2
3
3
use std:: num:: NonZeroUsize ;
4
4
5
- #[ cfg_attr( target_os = "linux" , path = "linux.rs" ) ]
5
+ #[ cfg_attr( any ( target_os = "linux" , target_os = "android" ) , path = "linux.rs" ) ]
6
6
#[ cfg_attr( target_os = "freebsd" , path = "freebsd.rs" ) ]
7
7
#[ cfg_attr( target_os = "macos" , path = "macos.rs" ) ]
8
8
mod imp;
You can’t perform that action at this time.
0 commit comments