#caniuse #serde #css #html-css #html #api-bindings #detail

caniuse-serde

A more modern wrapping for parsing and querying the caniuse.com JSON database using Serde 1.0

7 releases

Uses old Rust 2015

0.0.6 Nov 13, 2017
0.0.5 Nov 7, 2017
0.0.3 Oct 31, 2017

#41 in #detail


Used in css-autoprefix

MIT license

410KB
3.5K SLoC

caniuse-serde

caniuse-serde is a rust crate wrapping access to the caniuse database. It uses Serde 1.0 to parse the JSON. It does not create a build-time perfect hash map, so allowing alternative versions of the caniuse database to be supported.

It ships with an up-to-date caniuse database which is embedded by default; currently version 1.0.30000746.

Licensing

The license for this project is MIT. The caniuse database is available for use under a CC BY 4.0 license. Attribution for the caniuse database is "caniuse.com". Questions regarding the caniuse database can be asked at http://a.deveria.com/contact.


lib.rs:

caniuse-serde

A Rust library crate for working with the https://caniuse.com database of browser (agent) features and regional usage data. Comes with a version if the database embedded, and can also be used with external copies (JSON files).

Getting Going

To get started

extern crate caniuse_serde;
use ::caniuse_serde::{EmbeddedCanIUseDatabase, AgentName, FeatureName};

To look up an agent's details

let agent = AgentName::MozillaFirefox.agent(EmbeddedCanIUseDatabase).unwrap();

To look up a feature's details

let feature = "transform3d".into().feature(EmbeddedCanIUseDatabase).unwrap();

Regional Usage

  • Use the constants in the regional_usage module to get regional, continental and world-wide usage data.
  • To replicate the functionality of 'browserlist', use the query() method on RegionalUsage.
  • Or read below for a more useful approach.
  • Use the enum RegionalUsages with the method regional_usage() to obtain a reference to an embedded RegionalUsage database.

A strategy for using the caniuse database with browserlist like behaviour

The concept of version is differently understood by the browser vendors (eg IE vs Chrome, say), and so just saying 'last 2 versions' isn't particularly useful. In practice, a combination of selection rules is needed to identify a set of browser and browser versions to support, using the data in the database. These selection rules are likely to be stable for months and years, but not in the long term.

I've identified my own selection rules for a professional, international consultant's website written in English with translations to Spanish, French and Italian. I've added this as code to this crate to make sure that the API I've written around the caniuse.com database is actually usable.

To make use of my choices

The quickest way is with either sensible_choices() or sensible_choices_default():-

extern crate caniuse_serde;
use ::caniuse_serde::*;
use ::caniuse_serde::regional_usage::*;

let (can_i_use, choices) = sensible_choices_default();

let feature_name = FeatureName("css-focus-ring".to_owned());
let mut unique_prefixes = HashSet::new();
choices.support_for_a_feature(&can_i_use, &feature_name, |agent, version, support| {
	if support.requires_prefix() {
		unique_prefixes.insert(agent.prefix(version).clone());
	}
});

assert!(unique_prefixes.contains(&Prefix::moz));
assert_eq!(unique_prefixes.len(), 1);

My selection rules

  1. Obsolete Browsers still in use
    • We need to support the last version of these until its percentage usage falls below X%
    • The percentage usage should be for a sub-set of the world (ie target audience continents or countries)
    • These browsers are:- - IE (at version 11)
      • Blackberry Browser (at version 10)
      • IE Mobile (MS has dropped Windows Phone)
  2. Browsers with major change of rendering engine
    • This effectively makes the last version with the old rendering engine obsolete
    • Rules as for Obsolete Browsers, but selection needs to be aware that there are 'later' versions
    • These browsers are:-
      • Android Browser (at 4.4.4)
        • Opera with Presto
  3. Automatically Updated Browsers
    • These browsers have short-lived, sub-yearly versions
    • They are probably best discovered by matching for all released versions after a specific release date (eg 2 years ago)
    • Using a percentage isn't wise as usage of each version will change rapidly (from near zero to a few percentage points, then to near zero again), and certainly likely to change more rapidly than static website rebuilds
    • These browsers are:-
      • Firefox
      • Safari
      • Microsoft Edge
      • Chrome
      • Opera with Webkit Rendering Engine
  4. Long-Term Releases of Automatically Updated Browsers
    • These browsers have occasional long-term releases which are intended to be supported for a year or more
    • Usage percentages for these may be very low globally, and they may be 9 or more release versions 'out-of-date', but they represent an important audience
    • In practice the length of time each long term release is supported for changes with each release, even though vendors have 'long term release policies'
      • This is because policies change in the long interval between long-term releases
    • These browsers are problematic to identify as the caniuse.com database omits them
    • Some long-term release versions differ slightly in supported features, particularly those of a more experimental nature, to their related short-term release cousins (even though they may share the same major version number)
      • For Firefox, ESR releases are supposedly for one year (actually, 54 weeks, '9-cycles', with a 12-week ('2-cycle') overlap between releases (a cycle is a Firefox release cycle, typically 6 weeks), but, as always for these sorts of releases, the policy has changed several times.
    • These browsers are:-
      • Firefox
  5. Regionally significant, occasionally automatically updated browsers
    • Support of these browsers is particularly important for the Indian and Asian markets
    • Many cheaper smart phones come with them (I've used them, too)
    • Vendors frequently don't upgrade old firmware installed versions and some older versions may persist and have higher usage for some time than newer ones
    • All of them currently are just more dated versions of the Webkit rendering engine than Chrome
    • These browsers are probably best supported with a 'above X% rule', where X is for any version
    • These browsers are:-
      • UC Browser
      • Samsung Internet
      • QQ Browser
      • Baidu Browser
  6. Very different from mainstream and unsupportable
    • Opera Mini is an excellent product, but unless one is explicitly targeting its users' demographic, it is not useful to support
    • If one is targeting its users demographic, its lack of modern features (making it the lowest common denominator) means website development would not make use of caniuse.com data; it's too different.

Dependencies

~3.5–4.5MB
~115K SLoC