y-rb 0.4.3-x64-mingw-ucrt → 0.4.4-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/yrb/Cargo.toml +3 -3
- data/ext/yrb/src/yxml_element.rs +3 -3
- data/lib/3.1/yrb.so +0 -0
- data/lib/3.2/yrb.so +0 -0
- data/lib/y/version.rb +1 -1
- metadata +10 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e73e4802a796fcd4474f233468307a9122c5a37ea91676a0cd7da2742fa68965
|
4
|
+
data.tar.gz: 75545f3c1a627622d54552893b62e7f84942b8b779347fba2f5e23121329998e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ae9bfe76c3770431e642fba6b3135ba6095748e931f4cf11c377a3d2a9dbf8e2f1744857c95bfb90e188e078b083d8f40e54b3c4c368a3e70dffef9b472181b
|
7
|
+
data.tar.gz: 896608c425c2f2a64f18ac58cf4359aa17f36c2c9479e8866db6704e1c911353aaded7b8f02ec58e6bebc4fd71815cdae33a99e1a0dbc387ec3bee6447914b14
|
data/ext/yrb/Cargo.toml
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
[package]
|
2
2
|
name = "yrb"
|
3
|
-
version = "0.4.
|
3
|
+
version = "0.4.4"
|
4
4
|
authors = ["Hannes Moser <box@hannesmoser.at>", "Hannes Moser <hmoser@gitlab.com>"]
|
5
5
|
edition = "2021"
|
6
6
|
homepage = "https://github.com/y-crdt/yrb"
|
7
7
|
repository = "https://github.com/y-crdt/yrb"
|
8
8
|
|
9
9
|
[dependencies]
|
10
|
-
lib0 = "0.
|
10
|
+
lib0 = "0.16.0" # must match yrs version
|
11
11
|
magnus = { git = "https://github.com/matsadler/magnus", rev = "ab982c3643421b38f3293f1fe014aa373abfd6dc" }
|
12
12
|
thiserror = "1.0.38"
|
13
|
-
yrs = "0.
|
13
|
+
yrs = "0.16.0"
|
14
14
|
|
15
15
|
[dev-dependencies]
|
16
16
|
magnus = { git = "https://github.com/matsadler/magnus", rev = "ab982c3643421b38f3293f1fe014aa373abfd6dc", features = ["embed"] }
|
data/ext/yrb/src/yxml_element.rs
CHANGED
@@ -76,7 +76,7 @@ impl YXmlElement {
|
|
76
76
|
index: u32,
|
77
77
|
content: String,
|
78
78
|
) -> YXmlText {
|
79
|
-
let text = XmlTextPrelim(content.as_str());
|
79
|
+
let text = XmlTextPrelim::new(content.as_str());
|
80
80
|
let mut tx = transaction.transaction();
|
81
81
|
let tx = tx.as_mut().unwrap();
|
82
82
|
|
@@ -204,7 +204,7 @@ impl YXmlElement {
|
|
204
204
|
let mut tx = transaction.transaction();
|
205
205
|
let tx = tx.as_mut().unwrap();
|
206
206
|
|
207
|
-
let text = XmlTextPrelim(content.as_str());
|
207
|
+
let text = XmlTextPrelim::new(content.as_str());
|
208
208
|
YXmlText::from(self.0.borrow_mut().push_back(tx, text))
|
209
209
|
}
|
210
210
|
pub(crate) fn yxml_element_push_text_front(
|
@@ -215,7 +215,7 @@ impl YXmlElement {
|
|
215
215
|
let mut tx = transaction.transaction();
|
216
216
|
let tx = tx.as_mut().unwrap();
|
217
217
|
|
218
|
-
let text = XmlTextPrelim(content.as_str());
|
218
|
+
let text = XmlTextPrelim::new(content.as_str());
|
219
219
|
YXmlText::from(self.0.borrow_mut().push_front(tx, text))
|
220
220
|
}
|
221
221
|
pub(crate) fn yxml_element_remove_attribute(&self, transaction: &YTransaction, name: String) {
|
data/lib/3.1/yrb.so
CHANGED
Binary file
|
data/lib/3.2/yrb.so
ADDED
Binary file
|
data/lib/y/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: y-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.4
|
5
5
|
platform: x64-mingw-ucrt
|
6
6
|
authors:
|
7
7
|
- Hannes Moser
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -24,6 +24,7 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '13.0'
|
27
|
+
force_ruby_platform: false
|
27
28
|
- !ruby/object:Gem::Dependency
|
28
29
|
name: rb_sys
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -38,6 +39,7 @@ dependencies:
|
|
38
39
|
- - "~>"
|
39
40
|
- !ruby/object:Gem::Version
|
40
41
|
version: 0.9.56
|
42
|
+
force_ruby_platform: false
|
41
43
|
- !ruby/object:Gem::Dependency
|
42
44
|
name: rake-compiler
|
43
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -92,6 +94,7 @@ files:
|
|
92
94
|
- ext/yrb/src/yxml_fragment.rs
|
93
95
|
- ext/yrb/src/yxml_text.rs
|
94
96
|
- lib/3.1/yrb.so
|
97
|
+
- lib/3.2/yrb.so
|
95
98
|
- lib/y-rb.rb
|
96
99
|
- lib/y.rb
|
97
100
|
- lib/y/array.rb
|
@@ -111,7 +114,7 @@ metadata:
|
|
111
114
|
source_code_uri: https://github.com/y-crdt/yrb
|
112
115
|
documentation_uri: https://y-crdt.github.io/yrb/
|
113
116
|
rubygems_mfa_required: 'true'
|
114
|
-
post_install_message:
|
117
|
+
post_install_message:
|
115
118
|
rdoc_options: []
|
116
119
|
require_paths:
|
117
120
|
- lib
|
@@ -122,15 +125,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
125
|
version: '3.1'
|
123
126
|
- - "<"
|
124
127
|
- !ruby/object:Gem::Version
|
125
|
-
version: 3.
|
128
|
+
version: 3.3.dev
|
126
129
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
130
|
requirements:
|
128
131
|
- - ">="
|
129
132
|
- !ruby/object:Gem::Version
|
130
133
|
version: 3.3.21
|
131
134
|
requirements: []
|
132
|
-
rubygems_version: 3.
|
133
|
-
signing_key:
|
135
|
+
rubygems_version: 3.4.4
|
136
|
+
signing_key:
|
134
137
|
specification_version: 4
|
135
138
|
summary: Ruby bindings for yrs
|
136
139
|
test_files: []
|