typst 0.13.3 → 0.13.4
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/Rakefile +5 -2
- data/ext/typst/Cargo.toml +11 -11
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7bd5ec3e37ad2a898893362c896cf60ac40f4bccb1dac05d2bc458fd718ee7b
|
4
|
+
data.tar.gz: 943023950f2f1297ce44de22b077a0ff14c9cccdfe6dbfbc2099a3ed75a6e89b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6135098936e6cb2360c39c00be52ffbc295f80d7f6fc579a3ab786187e2bf77182cf5cdf981d6d702d64c1b0d1bf57221274801da34d9c819e1eaaf5c3256c0c
|
7
|
+
data.tar.gz: 35d5bf43e3bfffa486bd32f1b3a0e8f29f84841f1d5ac804dc53ca71ffc14eef901a635a8c5bdc08cf77f5c3b6eef05ba6bb9b0bf383a4027ae7dbe0aea75ce7
|
data/Rakefile
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
require "bundler/gem_tasks"
|
2
2
|
require "rake/extensiontask"
|
3
3
|
require "rake/testtask"
|
4
|
+
require 'rake_compiler_dock'
|
4
5
|
require "rubygems/package_task"
|
5
6
|
require "bundler"
|
6
7
|
|
7
8
|
CROSS_PLATFORMS = %w[
|
8
9
|
aarch64-linux
|
9
10
|
arm64-darwin
|
10
|
-
x64-
|
11
|
+
x64-mingw-ucrt
|
11
12
|
x86_64-darwin
|
12
13
|
x86_64-linux
|
13
14
|
x86_64-linux-musl
|
@@ -17,6 +18,8 @@ spec = Bundler.load_gemspec("typst.gemspec")
|
|
17
18
|
|
18
19
|
Gem::PackageTask.new(spec).define
|
19
20
|
|
21
|
+
RakeCompilerDock.set_ruby_cc_version("~> 3.1")
|
22
|
+
|
20
23
|
Rake::ExtensionTask.new("typst", spec) do |ext|
|
21
24
|
ext.lib_dir = "lib/typst"
|
22
25
|
ext.source_pattern = "*.{rs,toml}"
|
@@ -28,4 +31,4 @@ Rake::TestTask.new do |t|
|
|
28
31
|
t.libs << "test"
|
29
32
|
t.test_files = FileList['test/*_test.rb']
|
30
33
|
t.verbose = true
|
31
|
-
end
|
34
|
+
end
|
data/ext/typst/Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "typst"
|
3
|
-
version = "0.13.
|
3
|
+
version = "0.13.4"
|
4
4
|
edition = "2021"
|
5
5
|
|
6
6
|
[lib]
|
@@ -21,7 +21,7 @@ filetime = "0.2.22" #
|
|
21
21
|
flate2 = "1" #
|
22
22
|
fontdb = "0.15.0" #
|
23
23
|
log = "0.4.20" #
|
24
|
-
magnus = { version = "0.
|
24
|
+
magnus = { version = "0.7.1" }
|
25
25
|
pathdiff = "0.2"
|
26
26
|
same-file = "1" #
|
27
27
|
siphasher = "1.0" #
|
@@ -31,18 +31,18 @@ tar = "0.4" #
|
|
31
31
|
serde = { version = "1.0.217", features = ["derive"] }
|
32
32
|
serde_json = "1"
|
33
33
|
serde_yaml = "0.9"
|
34
|
-
typst = "0.13.
|
35
|
-
typst-library = "0.13.
|
36
|
-
typst-kit = { version = "0.13.
|
34
|
+
typst = "0.13.1"
|
35
|
+
typst-library = "0.13.1"
|
36
|
+
typst-kit = { version = "0.13.1", features = [
|
37
37
|
"downloads",
|
38
38
|
"embed-fonts",
|
39
39
|
"vendor-openssl",
|
40
40
|
] }
|
41
|
-
typst-pdf = "0.13.
|
42
|
-
typst-svg = "0.13.
|
43
|
-
typst-html = "0.13.
|
44
|
-
typst-render = "0.13.
|
45
|
-
typst-eval = "0.13.
|
41
|
+
typst-pdf = "0.13.1"
|
42
|
+
typst-svg = "0.13.1"
|
43
|
+
typst-html = "0.13.1"
|
44
|
+
typst-render = "0.13.1"
|
45
|
+
typst-eval = "0.13.1"
|
46
46
|
ureq = { version = "2", default-features = false, features = [
|
47
47
|
"gzip",
|
48
48
|
"socks-proxy",
|
@@ -51,4 +51,4 @@ walkdir = "2.4.0"
|
|
51
51
|
|
52
52
|
# enable rb-sys feature to test against Ruby head. This is only needed if you
|
53
53
|
# want to work with the unreleased, in-development, next version of Ruby
|
54
|
-
rb-sys = { version = "
|
54
|
+
rb-sys = { version = "0.9.116", default-features = false, features = ["stable-api-compiled-fallback"] }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typst
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Flinn
|
@@ -15,14 +15,14 @@ dependencies:
|
|
15
15
|
requirements:
|
16
16
|
- - ">="
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: 0.9.
|
18
|
+
version: 0.9.116
|
19
19
|
type: :runtime
|
20
20
|
prerelease: false
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
23
|
- - ">="
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: 0.9.
|
25
|
+
version: 0.9.116
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: rubyzip
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
112
|
- !ruby/object:Gem::Version
|
113
113
|
version: '0'
|
114
114
|
requirements: []
|
115
|
-
rubygems_version: 3.6.
|
115
|
+
rubygems_version: 3.6.9
|
116
116
|
specification_version: 4
|
117
117
|
summary: Ruby binding to typst, a new markup-based typesetting system that is powerful
|
118
118
|
and easy to learn.
|