Skip to content

Commit

Permalink
meta: Add cargo metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-auer committed Nov 23, 2017
1 parent d8078e2 commit dc8231e
Show file tree
Hide file tree
Showing 9 changed files with 109 additions and 9 deletions.
14 changes: 13 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
[package]
name = "symbolic"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
readme = "README.md"
description = """
A library to symbolicate and process stack traces from native applications,
minidumps, minified JavaScripts or ProGuard optimized Android apps.
"""
exclude = [
".vscode/**/*",
"py/**/*",
Expand Down
13 changes: 12 additions & 1 deletion cabi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
name = "symbolic-cabi"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
description = """
C interface wrapper for symbolic, a library to symbolicate and process stack
traces from native applications, minidumps, minified JavaScripts or ProGuard
optimized Android apps.
"""

[lib]
name = "symbolic"
Expand Down
14 changes: 13 additions & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
[package]
name = "symbolic-common"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic-common"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
description = """
Common types and utilities for symbolic, a library to symbolicate and process
stack traces from native applications, minidumps, minified JavaScripts or
ProGuard optimized Android apps.
"""

[dependencies]
error-chain = "0.11"
Expand Down
13 changes: 12 additions & 1 deletion debuginfo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
name = "symbolic-debuginfo"
version = "1.1.4"
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic-debuginfo"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
description = """
A library to inspect and load DWARF debugging information from binaries, such
as Mach-O or ELF.
"""

[dependencies]
gimli = { git = "https://github.com/gimli-rs/gimli.git" }
Expand Down
12 changes: 11 additions & 1 deletion demangle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
[package]
name = "symbolic-demangle"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic-demangle"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
description = """
A library to demangle symbols from various languages and compilers.
"""
build = "build.rs"

[dependencies]
Expand Down
13 changes: 12 additions & 1 deletion minidump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
name = "symbolic-minidump"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic-minidump"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
readme = "README.md"
description = """
A library to process and inspect Minidump crash reports
"""
build = "build.rs"

[dependencies]
Expand Down
13 changes: 12 additions & 1 deletion proguard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
name = "symbolic-proguard"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic-proguard"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
description = """
A library to process ProGuard mapping files and symbolicate frames from
optimized applications.
"""

[dependencies]
symbolic-common = { version = "1.1.4", path = "../common" }
Expand Down
13 changes: 12 additions & 1 deletion sourcemap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
name = "symbolic-sourcemap"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic-sourcemap"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
description = """
A library to process JavaScript sourcemaps and resolve symbols in minified
source code or stack traces.
"""

[dependencies]
symbolic-common = { version = "1.1.4", path = "../common", features = ["with_sourcemaps"] }
Expand Down
13 changes: 12 additions & 1 deletion symcache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
name = "symbolic-symcache"
version = "1.1.4"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
license = "MIT"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Jan Michael Auer <mail@jauer.org>",
]
documentation = "https://docs.rs/symbolic-symcache"
homepage = "https://github.com/getsentry/symbolic"
repository = "https://github.com/getsentry/symbolic"
description = """
An optimizied cache file for fast and memory efficient lookup of symbols and
stack frames in debugging information.
"""

[dependencies]
symbolic-common = { version = "1.1.4", path = "../common", features = ["with_dwarf", "with_objects"] }
Expand Down

0 comments on commit dc8231e

Please sign in to comment.