forked from rust-lang/rust-semverver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog-0.3.4-0.3.8.osx
More file actions
161 lines (142 loc) · 5.75 KB
/
Copy pathlog-0.3.4-0.3.8.osx
File metadata and controls
161 lines (142 loc) · 5.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
version bump: 0.3.4 -> (technically breaking) -> 0.3.5
warning: technically breaking changes in `<new::LogLevel as std::hash::Hash>`
--> log-0.3.8/src/lib.rs:266:27
|
266 | #[derive(Copy, Eq, Debug, Hash)]
| ^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogLevelFilter as std::hash::Hash>`
--> log-0.3.8/src/lib.rs:410:27
|
410 | #[derive(Copy, Eq, Debug, Hash)]
| ^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogRecord<'a> as std::fmt::Debug>`
--> log-0.3.8/src/lib.rs:517:10
|
517 | #[derive(Debug)]
| ^^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogMetadata<'a> as std::marker::StructuralEq>`
--> log-0.3.8/src/lib.rs:552:10
|
552 | #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
| ^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogMetadata<'a> as std::marker::StructuralPartialEq>`
--> log-0.3.8/src/lib.rs:552:14
|
552 | #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
| ^^^^^^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogMetadata<'a> as std::cmp::Ord>`
--> log-0.3.8/src/lib.rs:552:25
|
552 | #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
| ^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogMetadata<'a> as std::cmp::PartialOrd>`
--> log-0.3.8/src/lib.rs:552:30
|
552 | #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
| ^^^^^^^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogMetadata<'a> as std::hash::Hash>`
--> log-0.3.8/src/lib.rs:552:42
|
552 | #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
| ^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogMetadata<'a> as std::fmt::Debug>`
--> log-0.3.8/src/lib.rs:552:48
|
552 | #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
| ^^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogLocation as std::marker::StructuralEq>`
--> log-0.3.8/src/lib.rs:604:30
|
604 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
| ^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogLocation as std::marker::StructuralPartialEq>`
--> log-0.3.8/src/lib.rs:604:34
|
604 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
| ^^^^^^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogLocation as std::cmp::Ord>`
--> log-0.3.8/src/lib.rs:604:45
|
604 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
| ^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogLocation as std::cmp::PartialOrd>`
--> log-0.3.8/src/lib.rs:604:50
|
604 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
| ^^^^^^^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: technically breaking changes in `<new::LogLocation as std::hash::Hash>`
--> log-0.3.8/src/lib.rs:604:62
|
604 | #[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
| ^^^^
|
= note: trait impl generalized or newly added (technically breaking)
warning: path changes to `set_logger_raw`
--> log-0.3.8/src/lib.rs:713:1
|
713 | / pub unsafe fn set_logger_raw<M>(make_logger: M) -> Result<(), SetLoggerError>
714 | | where M: FnOnce(MaxLogLevelFilter) -> *const Log {
715 | | if STATE.compare_and_swap(UNINITIALIZED, INITIALIZING,
716 | | Ordering::SeqCst) != UNINITIALIZED {
... |
722 | | Ok(())
723 | | }
| |_^
|
= note: added definition (technically breaking)
warning: path changes to `shutdown_logger`
--> log-0.3.8/src/lib.rs:736:1
|
736 | / pub fn shutdown_logger() -> Result<Box<Log>, ShutdownLoggerError> {
737 | | shutdown_logger_raw().map(|l| unsafe { mem::transmute(l) })
738 | | }
| |_^
|
= note: added definition (technically breaking)
warning: path changes to `shutdown_logger_raw`
--> log-0.3.8/src/lib.rs:754:1
|
754 | / pub fn shutdown_logger_raw() -> Result<*const Log, ShutdownLoggerError> {
755 | | // Set the global log level to stop other thread from logging
756 | | MAX_LOG_LEVEL_FILTER.store(0, Ordering::SeqCst);
757 | |
... |
772 | | }
773 | | }
| |_^
|
= note: added definition (technically breaking)
warning: path changes to `ShutdownLoggerError`
--> log-0.3.8/src/lib.rs:797:1
|
797 | pub struct ShutdownLoggerError(());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: added definition (technically breaking)
warning: 18 warnings emitted